From 0a7962c0cbd57c9afadd009a64a6be02230fb85c Mon Sep 17 00:00:00 2001 From: SeiyaKobayashi Date: Sun, 2 Nov 2025 21:19:03 +0900 Subject: [PATCH 1/8] Add proxy address of jpyc contract (in addition to jpyc_prepaid) --- packages/core/examples/permit.py | 2 +- .../core/jpyc_core_sdk/artifacts/README.md | 6 +- .../artifacts/{v2.json => jpyc.json} | 0 .../jpyc_core_sdk/artifacts/jpyc_prepaid.json | 1254 +++++++++++++++++ packages/core/jpyc_core_sdk/jpyc.py | 30 +- packages/core/jpyc_core_sdk/utils/README.md | 2 +- packages/core/jpyc_core_sdk/utils/__init__.py | 4 +- .../core/jpyc_core_sdk/utils/addresses.py | 28 +- .../core/jpyc_core_sdk/utils/artifacts.py | 12 +- packages/core/jpyc_core_sdk/utils/types.py | 4 +- packages/core/pyproject.toml | 4 +- tests/core/utils/test_addresses.py | 32 +- tests/core/utils/test_artifacts.py | 23 +- 13 files changed, 1338 insertions(+), 63 deletions(-) rename packages/core/jpyc_core_sdk/artifacts/{v2.json => jpyc.json} (100%) create mode 100644 packages/core/jpyc_core_sdk/artifacts/jpyc_prepaid.json diff --git a/packages/core/examples/permit.py b/packages/core/examples/permit.py index 87c8fed..d56ae81 100644 --- a/packages/core/examples/permit.py +++ b/packages/core/examples/permit.py @@ -87,7 +87,7 @@ def main() -> None: spender=KNOWN_ACCOUNTS[1].address, ) print( - f"Allowance of {KNOWN_ACCOUNTS[1].address}" + f"Allowance of {KNOWN_ACCOUNTS[1].address} " f"over {KNOWN_ACCOUNTS[0].address}'s assets: {allowance}" ) diff --git a/packages/core/jpyc_core_sdk/artifacts/README.md b/packages/core/jpyc_core_sdk/artifacts/README.md index 9c6e40d..9ce1a72 100644 --- a/packages/core/jpyc_core_sdk/artifacts/README.md +++ b/packages/core/jpyc_core_sdk/artifacts/README.md @@ -7,7 +7,7 @@ This directory contains the auto-generated artifacts of [JPYC's core contracts]( ## 📚 Available Versions -| Version | File | Description | +| Type | File | Description | | ------: | :--------------------- | :----------------------------------------- | -| `v3` | n/a | Coming Soon | -| `v2` | [`v2.json`](./v2.json) | Artifacts of JPYCv2 contracts (**latest**) | +| `jpyc` | [`jpyc.json`](./jpyc.json) | Contract artifacts of JPYC (**latest**) | +| `jpyc_prepaid` | [`jpyc_prepaid.json`](./jpyc_prepaid.json) | Contract artifacts of JPYC Prepaid | diff --git a/packages/core/jpyc_core_sdk/artifacts/v2.json b/packages/core/jpyc_core_sdk/artifacts/jpyc.json similarity index 100% rename from packages/core/jpyc_core_sdk/artifacts/v2.json rename to packages/core/jpyc_core_sdk/artifacts/jpyc.json diff --git a/packages/core/jpyc_core_sdk/artifacts/jpyc_prepaid.json b/packages/core/jpyc_core_sdk/artifacts/jpyc_prepaid.json new file mode 100644 index 0000000..45ab6cb --- /dev/null +++ b/packages/core/jpyc_core_sdk/artifacts/jpyc_prepaid.json @@ -0,0 +1,1254 @@ +{ + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "authorizer", + "type": "address" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "nonce", + "type": "bytes32" + } + ], + "name": "AuthorizationCanceled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "authorizer", + "type": "address" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "nonce", + "type": "bytes32" + } + ], + "name": "AuthorizationUsed", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "_account", + "type": "address" + } + ], + "name": "Blocklisted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "newBlocklister", + "type": "address" + } + ], + "name": "BlocklisterChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "burner", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "Burn", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "minter", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "Mint", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "newMinterAdmin", + "type": "address" + } + ], + "name": "MinterAdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "minter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "minterAllowedAmount", + "type": "uint256" + } + ], + "name": "MinterConfigured", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "oldMinter", + "type": "address" + } + ], + "name": "MinterRemoved", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [], + "name": "Pause", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "newAddress", + "type": "address" + } + ], + "name": "PauserChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "newRescuer", + "type": "address" + } + ], + "name": "RescuerChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "_account", + "type": "address" + } + ], + "name": "UnBlocklisted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [], + "name": "Unpause", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "implementation", + "type": "address" + } + ], + "name": "Upgraded", + "type": "event" + }, + { + "inputs": [], + "name": "CANCEL_AUTHORIZATION_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "PERMIT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "RECEIVE_WITH_AUTHORIZATION_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "TRANSFER_WITH_AUTHORIZATION_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "_domainSeparatorV4", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "authorizer", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "nonce", + "type": "bytes32" + } + ], + "name": "authorizationState", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_account", + "type": "address" + } + ], + "name": "blocklist", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "blocklister", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "burn", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "authorizer", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "nonce", + "type": "bytes32" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "cancelAuthorization", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "minter", + "type": "address" + }, + { + "internalType": "uint256", + "name": "minterAllowedAmount", + "type": "uint256" + } + ], + "name": "configureMinter", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "currency", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "decrement", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "increment", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "tokenName", + "type": "string" + }, + { + "internalType": "string", + "name": "tokenSymbol", + "type": "string" + }, + { + "internalType": "string", + "name": "tokenCurrency", + "type": "string" + }, + { + "internalType": "uint8", + "name": "tokenDecimals", + "type": "uint8" + }, + { + "internalType": "address", + "name": "newMinterAdmin", + "type": "address" + }, + { + "internalType": "address", + "name": "newPauser", + "type": "address" + }, + { + "internalType": "address", + "name": "newBlocklister", + "type": "address" + }, + { + "internalType": "address", + "name": "newRescuer", + "type": "address" + }, + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_account", + "type": "address" + } + ], + "name": "isBlocklisted", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "isMinter", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "mint", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "minterAdmin", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "minter", + "type": "address" + } + ], + "name": "minterAllowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "paused", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pauser", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "permit", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "proxiableUUID", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "validAfter", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "validBefore", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "nonce", + "type": "bytes32" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "receiveWithAuthorization", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "minter", + "type": "address" + } + ], + "name": "removeMinter", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20", + "name": "tokenContract", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "rescueERC20", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "rescuer", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "validAfter", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "validBefore", + "type": "uint256" + }, + { + "internalType": "bytes32", + "name": "nonce", + "type": "bytes32" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "transferWithAuthorization", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_account", + "type": "address" + } + ], + "name": "unBlocklist", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "unpause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_newBlocklister", + "type": "address" + } + ], + "name": "updateBlocklister", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_newMinterAdmin", + "type": "address" + } + ], + "name": "updateMinterAdmin", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_newPauser", + "type": "address" + } + ], + "name": "updatePauser", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newRescuer", + "type": "address" + } + ], + "name": "updateRescuer", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "upgradeTo", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newImplementation", + "type": "address" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "upgradeToAndCall", + "outputs": [], + "stateMutability": "payable", + "type": "function" + } + ], + "bytecode": "0x60a0604052306080523480156200001557600080fd5b50620000213362000027565b62000077565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b608051614e33620000af600039600081816111da0152818161127001528181611f0e01528181611fa4015261209f0152614e336000f3fe6080604052600436106103295760003560e01c80637ecebe00116101a5578063aa271e1a116100ec578063e3ee160e11610095578063e94a01021161006f578063e94a0102146109d7578063ef55bec614610a1e578063f2fde38b14610a3e578063f9b5aa9214610a5e57600080fd5b8063e3ee160e14610982578063e5a6b10f146109a2578063e5c7160b146109b757600080fd5b8063d505accf116100c6578063d505accf146108e7578063d916948714610907578063dd62ed3e1461093b57600080fd5b8063aa271e1a1461086d578063b2118a8d146108a7578063b54d9497146108c757600080fd5b806395d89b411161014e578063a457c2d711610128578063a457c2d71461080c578063a754d48f1461082c578063a9059cbb1461084d57600080fd5b806395d89b41146107a35780639fd0506d146107b8578063a0cc6a68146107d857600080fd5b80638a6db9c31161017f5780638a6db9c3146107155780638da5cb5b1461074c5780638e204c431461076a57600080fd5b80637ecebe00146106955780637f2eecc3146106cc5780638456cb591461070057600080fd5b80633f4ba83a1161027457806352d1902d1161021d5780635c975abb116101f75780635c975abb1461060857806370a082311461062957806374ebf673146106605780637b134b4c1461068057600080fd5b806352d1902d146105b3578063554bab3c146105c85780635a049a70146105e857600080fd5b8063439531fd1161024e578063439531fd146105605780634e44d956146105805780634f1ef286146105a057600080fd5b80633f4ba83a1461050b57806340c10f191461052057806342966c681461054057600080fd5b806330adf81f116102d65780633659cfe6116102b05780633659cfe61461049357806338a63183146104b357806339509351146104eb57600080fd5b806330adf81f1461040b578063313ce5671461043f57806331b230201461047357600080fd5b806323b872dd1161030757806323b872dd146103a95780632ab60045146103c95780633092afd5146103eb57600080fd5b806306fdde031461032e578063095ea7b31461035957806318160ddd14610389575b600080fd5b34801561033a57600080fd5b50610343610a7e565b604051610350919061481c565b60405180910390f35b34801561036557600080fd5b5061037961037436600461486f565b610b0d565b6040519015158152602001610350565b34801561039557600080fd5b50610202545b604051908152602001610350565b3480156103b557600080fd5b506103796103c436600461489b565b610c59565b3480156103d557600080fd5b506103e96103e43660046148dc565b610eed565b005b3480156103f757600080fd5b506103796104063660046148dc565b611029565b34801561041757600080fd5b5061039b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b34801561044b57600080fd5b506102035461046190600160a01b900460ff1681565b60405160ff9091168152602001610350565b34801561047f57600080fd5b506103e961048e3660046148dc565b61110b565b34801561049f57600080fd5b506103e96104ae3660046148dc565b6111cf565b3480156104bf57600080fd5b50609a546104d3906001600160a01b031681565b6040516001600160a01b039091168152602001610350565b3480156104f757600080fd5b5061037961050636600461486f565b61136d565b34801561051757600080fd5b506103e96114a9565b34801561052c57600080fd5b5061037961053b36600461486f565b61157c565b34801561054c57600080fd5b506103e961055b3660046148f9565b6119a7565b34801561056c57600080fd5b506103e961057b3660046148dc565b611c89565b34801561058c57600080fd5b5061037961059b36600461486f565b611dc6565b6103e96105ae3660046149b7565b611f03565b3480156105bf57600080fd5b5061039b612092565b3480156105d457600080fd5b506103e96105e33660046148dc565b612157565b3480156105f457600080fd5b506103e9610603366004614a2c565b612293565b34801561061457600080fd5b5060335461037990600160a01b900460ff1681565b34801561063557600080fd5b5061039b6106443660046148dc565b6001600160a01b03166000908152610204602052604090205490565b34801561066c57600080fd5b506103e961067b366004614a9c565b6122f4565b34801561068c57600080fd5b5061039b612838565b3480156106a157600080fd5b5061039b6106b03660046148dc565b6001600160a01b03166000908152610168602052604090205490565b3480156106d857600080fd5b5061039b7fd099cc98ef71107a616c4f0f941f04c322d8e254fe26b3c6668db87aae413de881565b34801561070c57600080fd5b506103e96129de565b34801561072157600080fd5b5061039b6107303660046148dc565b6001600160a01b03166000908152610207602052604090205490565b34801561075857600080fd5b506000546001600160a01b03166104d3565b34801561077657600080fd5b506103796107853660046148dc565b6001600160a01b031660009081526067602052604090205460011490565b3480156107af57600080fd5b50610343612ab7565b3480156107c457600080fd5b506033546104d3906001600160a01b031681565b3480156107e457600080fd5b5061039b7f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226781565b34801561081857600080fd5b5061037961082736600461486f565b612ac5565b34801561083857600080fd5b50610203546104d3906001600160a01b031681565b34801561085957600080fd5b5061037961086836600461486f565b612c01565b34801561087957600080fd5b506103796108883660046148dc565b6001600160a01b03166000908152610206602052604090205460ff1690565b3480156108b357600080fd5b506103e96108c236600461489b565b612d3d565b3480156108d357600080fd5b506066546104d3906001600160a01b031681565b3480156108f357600080fd5b506103e9610902366004614b89565b612e4e565b34801561091357600080fd5b5061039b7f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742981565b34801561094757600080fd5b5061039b610956366004614bf7565b6001600160a01b0391821660009081526102056020908152604080832093909416825291909152205490565b34801561098e57600080fd5b506103e961099d366004614c30565b612fa1565b3480156109ae57600080fd5b506103436130f8565b3480156109c357600080fd5b506103e96109d23660046148dc565b613106565b3480156109e357600080fd5b506103796109f236600461486f565b6001600160a01b0391909116600090815261013560209081526040808320938352929052205460011490565b348015610a2a57600080fd5b506103e9610a39366004614c30565b6131cb565b348015610a4a57600080fd5b506103e9610a593660046148dc565b613315565b348015610a6a57600080fd5b506103e9610a793660046148dc565b613403565b6101ff8054610a8c90614cb2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab890614cb2565b8015610b055780601f10610ada57610100808354040283529160200191610b05565b820191906000526020600020905b815481529060010190602001808311610ae857829003601f168201915b505050505081565b603354600090600160a01b900460ff1615610b625760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064015b60405180910390fd5b3360008181526067602052604090205415610bcd5760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6001600160a01b038416600090815260676020526040902054849015610c435760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b610c4e33868661353f565b506001949350505050565b603354600090600160a01b900460ff1615610ca95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b59565b3360008181526067602052604090205415610d145760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6001600160a01b038516600090815260676020526040902054859015610d8a5760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6001600160a01b038516600090815260676020526040902054859015610e005760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6001600160a01b0387166000908152610205602090815260408083203384529091529020546000198114610ed45785811015610ea45760405162461bcd60e51b815260206004820152602c60248201527f46696174546f6b656e3a207472616e7366657220616d6f756e7420657863656560448201527f647320616c6c6f77616e636500000000000000000000000000000000000000006064820152608401610b59565b610eae8682614d35565b6001600160a01b0389166000908152610205602090815260408083203384529091529020555b610edf888888613691565b506001979650505050505050565b33610f006000546001600160a01b031690565b6001600160a01b031614610f565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b59565b6001600160a01b038116610fd25760405162461bcd60e51b815260206004820152602a60248201527f526573637561626c653a206e6577207265736375657220697320746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b59565b609a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517fe475e580d85111348e40d8ca33cfdd74c30fe1655c2d8537a13abc10065ffa5a90600090a250565b610203546000906001600160a01b031633146110ad5760405162461bcd60e51b815260206004820152602860248201527f46696174546f6b656e3a2063616c6c6572206973206e6f7420746865206d696e60448201527f74657241646d696e0000000000000000000000000000000000000000000000006064820152608401610b59565b6001600160a01b038216600081815261020660209081526040808320805460ff19169055610207909152808220829055517fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb666929190a25060015b919050565b6066546001600160a01b0316331461118b5760405162461bcd60e51b815260206004820152602c60248201527f426c6f636b6c69737461626c653a2063616c6c6572206973206e6f742074686560448201527f20626c6f636b6c697374657200000000000000000000000000000000000000006064820152608401610b59565b6001600160a01b038116600081815260676020526040808220829055517fbc3fe0fc667d12a7a22748747f024a7d971127ffc48f6622675d3e97a2591a519190a250565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016141561126e5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610b59565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166112c97f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b0316146113455760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610b59565b61134e816138b7565b6040805160008082526020820190925261136a91839190613920565b50565b603354600090600160a01b900460ff16156113bd5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b59565b33600081815260676020526040902054156114285760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6001600160a01b03841660009081526067602052604090205484901561149e5760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b610c4e338686613ac5565b6033546001600160a01b031633146115295760405162461bcd60e51b815260206004820152602260248201527f5061757361626c653a2063616c6c6572206973206e6f7420746865207061757360448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610b59565b603380547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b603354600090600160a01b900460ff16156115cc5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b59565b336000908152610206602052604090205460ff166116525760405162461bcd60e51b815260206004820152602160248201527f46696174546f6b656e3a2063616c6c6572206973206e6f742061206d696e746560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b59565b33600081815260676020526040902054156116bd5760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6001600160a01b0384166000908152606760205260409020548490156117335760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6001600160a01b0385166117af5760405162461bcd60e51b815260206004820152602360248201527f46696174546f6b656e3a206d696e7420746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610b59565b600084116118255760405162461bcd60e51b815260206004820152602960248201527f46696174546f6b656e3a206d696e7420616d6f756e74206e6f7420677265617460448201527f6572207468616e203000000000000000000000000000000000000000000000006064820152608401610b59565b3360009081526102076020526040902054808511156118ac5760405162461bcd60e51b815260206004820152602e60248201527f46696174546f6b656e3a206d696e7420616d6f756e742065786365656473206d60448201527f696e746572416c6c6f77616e63650000000000000000000000000000000000006064820152608401610b59565b84610202546118bb9190614d4c565b610202556001600160a01b038616600090815261020460205260409020546118e4908690614d4c565b6001600160a01b038716600090815261020460205260409020556119088582614d35565b336000818152610207602090815260409182902093909355518781526001600160a01b038916927fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f8910160405180910390a36040518581526001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350600195945050505050565b603354600160a01b900460ff16156119f45760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b59565b336000908152610206602052604090205460ff16611a7a5760405162461bcd60e51b815260206004820152602160248201527f46696174546f6b656e3a2063616c6c6572206973206e6f742061206d696e746560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b59565b3360008181526067602052604090205415611ae55760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b336000908152610204602052604090205482611b695760405162461bcd60e51b815260206004820152602960248201527f46696174546f6b656e3a206275726e20616d6f756e74206e6f7420677265617460448201527f6572207468616e203000000000000000000000000000000000000000000000006064820152608401610b59565b82811015611bdf5760405162461bcd60e51b815260206004820152602660248201527f46696174546f6b656e3a206275726e20616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610b59565b8261020254611bee9190614d35565b61020255611bfc8382614d35565b3360008181526102046020526040908190209290925590517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca590611c439086815260200190565b60405180910390a260405183815260009033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a3505050565b33611c9c6000546001600160a01b031690565b6001600160a01b031614611cf25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b59565b6001600160a01b038116611d6e5760405162461bcd60e51b815260206004820152602e60248201527f46696174546f6b656e3a206e6577206d696e74657241646d696e20697320746860448201527f65207a65726f20616464726573730000000000000000000000000000000000006064820152608401610b59565b610203805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f4e6db312b79f0cdadbee5f76e2473786c1e81cba2356eacccc2aa5b5e6e3664c90600090a250565b603354600090600160a01b900460ff1615611e165760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b59565b610203546001600160a01b03163314611e975760405162461bcd60e51b815260206004820152602860248201527f46696174546f6b656e3a2063616c6c6572206973206e6f7420746865206d696e60448201527f74657241646d696e0000000000000000000000000000000000000000000000006064820152608401610b59565b6001600160a01b038316600081815261020660209081526040808320805460ff1916600117905561020782529182902085905590518481527f46980fca912ef9bcdbd36877427b6b90e860769f604e89c0e67720cece530d20910160405180910390a250600192915050565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415611fa25760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610b59565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611ffd7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b0316146120795760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610b59565b612082826138b7565b61208e82826001613920565b5050565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146121325760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610b59565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b3361216a6000546001600160a01b031690565b6001600160a01b0316146121c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b59565b6001600160a01b03811661223c5760405162461bcd60e51b815260206004820152602860248201527f5061757361626c653a206e65772070617573657220697320746865207a65726f60448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610b59565b6033805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517fb80482a293ca2e013eda8683c9bd7fc8347cfdaeea5ede58cba46df502c2a60490600090a250565b603354600160a01b900460ff16156122e05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b59565b6122ed8585858585613b04565b5050505050565b610203547501000000000000000000000000000000000000000000900460ff16156123875760405162461bcd60e51b815260206004820152602a60248201527f46696174546f6b656e3a20636f6e747261637420697320616c7265616479206960448201527f6e697469616c697a6564000000000000000000000000000000000000000000006064820152608401610b59565b6001600160a01b0385166124035760405162461bcd60e51b815260206004820152602e60248201527f46696174546f6b656e3a206e6577206d696e74657241646d696e20697320746860448201527f65207a65726f20616464726573730000000000000000000000000000000000006064820152608401610b59565b6001600160a01b03841661247f5760405162461bcd60e51b815260206004820152602960248201527f46696174546f6b656e3a206e65772070617573657220697320746865207a657260448201527f6f206164647265737300000000000000000000000000000000000000000000006064820152608401610b59565b6001600160a01b0383166124fb5760405162461bcd60e51b815260206004820152602e60248201527f46696174546f6b656e3a206e657720626c6f636b6c697374657220697320746860448201527f65207a65726f20616464726573730000000000000000000000000000000000006064820152608401610b59565b6001600160a01b0382166125775760405162461bcd60e51b815260206004820152602a60248201527f46696174546f6b656e3a206e6577207265736375657220697320746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b59565b6001600160a01b0381166125f35760405162461bcd60e51b815260206004820152602860248201527f46696174546f6b656e3a206e6577206f776e657220697320746865207a65726f60448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610b59565b8851612607906101ff9060208c0190614757565b50875161261c906102009060208b0190614757565b508651612631906102019060208a0190614757565b5061020380547fffffffffffffffffffffff00000000000000000000000000000000000000000016600160a01b60ff89160273ffffffffffffffffffffffffffffffffffffffff19908116919091176001600160a01b0388811691909117909255603380548216878416179055606680548216868416179055609a80549091169184169190911790556126c381613c25565b30600081815260676020908152604091829020600190819055825180840184529081527f3100000000000000000000000000000000000000000000000000000000000000908201528b518c82012082517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81840152808401919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015246608082015260a0808201949094528251808203909401845260c001909152815191012060ff55466101005588516127a5906101019060208c0190614757565b506040805180820190915260018082527f310000000000000000000000000000000000000000000000000000000000000060209092019182526127eb9161010291614757565b505061020380547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790555050505050505050565b60006101005446141561284c575060ff5490565b6129d9610101805461285d90614cb2565b80601f016020809104026020016040519081016040528092919081815260200182805461288990614cb2565b80156128d65780601f106128ab576101008083540402835291602001916128d6565b820191906000526020600020905b8154815290600101906020018083116128b957829003601f168201915b505050505061010280546128e990614cb2565b80601f016020809104026020016040519081016040528092919081815260200182805461291590614cb2565b80156129625780601f1061293757610100808354040283529160200191612962565b820191906000526020600020905b81548152906001019060200180831161294557829003601f168201915b50505050508151602092830120815191830191909120604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818601528082019390935260608301919091524660808301523060a0808401919091528151808403909101815260c09092019052805191012090565b905090565b6033546001600160a01b03163314612a5e5760405162461bcd60e51b815260206004820152602260248201527f5061757361626c653a2063616c6c6572206973206e6f7420746865207061757360448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610b59565b603380547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6102008054610a8c90614cb2565b603354600090600160a01b900460ff1615612b155760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b59565b3360008181526067602052604090205415612b805760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6001600160a01b038416600090815260676020526040902054849015612bf65760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b610c4e338686613c82565b603354600090600160a01b900460ff1615612c515760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b59565b3360008181526067602052604090205415612cbc5760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6001600160a01b038416600090815260676020526040902054849015612d325760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b610c4e338686613691565b609a546001600160a01b03163314612dbc5760405162461bcd60e51b8152602060048201526024808201527f526573637561626c653a2063616c6c6572206973206e6f74207468652072657360448201527f63756572000000000000000000000000000000000000000000000000000000006064820152608401610b59565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af1158015612e24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e489190614d64565b50505050565b603354600160a01b900460ff1615612e9b5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b59565b6001600160a01b038716600090815260676020526040902054879015612f115760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6001600160a01b038716600090815260676020526040902054879015612f875760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b612f9689898989898989613d2e565b505050505050505050565b603354600160a01b900460ff1615612fee5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b59565b6001600160a01b0389166000908152606760205260409020548990156130645760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6001600160a01b0389166000908152606760205260409020548990156130da5760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6130eb8b8b8b8b8b8b8b8b8b613e99565b5050505050505050505050565b6102018054610a8c90614cb2565b6066546001600160a01b031633146131865760405162461bcd60e51b815260206004820152602c60248201527f426c6f636b6c69737461626c653a2063616c6c6572206973206e6f742074686560448201527f20626c6f636b6c697374657200000000000000000000000000000000000000006064820152608401610b59565b6001600160a01b03811660008181526067602052604080822060019055517f917c251bb231c4b997a420bebe47edad5c20e70715da16c38e9b2e172e44ab929190a250565b603354600160a01b900460ff16156132185760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b59565b6001600160a01b03891660009081526067602052604090205489901561328e5760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6001600160a01b0389166000908152606760205260409020548990156133045760405162461bcd60e51b815260206004820152602560248201527f426c6f636b6c69737461626c653a206163636f756e7420697320626c6f636b6c6044820152641a5cdd195960da1b6064820152608401610b59565b6130eb8b8b8b8b8b8b8b8b8b613faa565b336133286000546001600160a01b031690565b6001600160a01b03161461337e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b59565b6001600160a01b0381166133fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b59565b61136a81613c25565b336134166000546001600160a01b031690565b6001600160a01b03161461346c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b59565b6001600160a01b0381166134e85760405162461bcd60e51b815260206004820152603260248201527f426c6f636b6c69737461626c653a206e657720626c6f636b6c6973746572206960448201527f7320746865207a65726f206164647265737300000000000000000000000000006064820152608401610b59565b6066805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f68f10ceb42d30acc930aaaedf5b94559e14fc4f22496dc2c1b38b1b1b5231f9890600090a250565b6001600160a01b0383166135bb5760405162461bcd60e51b815260206004820152602860248201527f46696174546f6b656e3a20617070726f76652066726f6d20746865207a65726f60448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610b59565b6001600160a01b0382166136375760405162461bcd60e51b815260206004820152602660248201527f46696174546f6b656e3a20617070726f766520746f20746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b59565b6001600160a01b038381166000818152610205602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101611c7c565b6001600160a01b03831661370d5760405162461bcd60e51b815260206004820152602960248201527f46696174546f6b656e3a207472616e736665722066726f6d20746865207a657260448201527f6f206164647265737300000000000000000000000000000000000000000000006064820152608401610b59565b6001600160a01b0382166137895760405162461bcd60e51b815260206004820152602760248201527f46696174546f6b656e3a207472616e7366657220746f20746865207a65726f2060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610b59565b6001600160a01b03831660009081526102046020526040902054808211156138195760405162461bcd60e51b815260206004820152602a60248201527f46696174546f6b656e3a207472616e7366657220616d6f756e7420657863656560448201527f64732062616c616e6365000000000000000000000000000000000000000000006064820152608401610b59565b6138238282614d35565b6001600160a01b03808616600090815261020460205260408082209390935590851681522054613854908390614d4c565b6001600160a01b038085166000818152610204602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906138a99086815260200190565b60405180910390a350505050565b336138ca6000546001600160a01b031690565b6001600160a01b03161461136a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b59565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff161561395857613953836140a0565b505050565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156139b2575060408051601f3d908101601f191682019092526139af91810190614d86565b60015b613a245760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608401610b59565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8114613ab95760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f7860448201527f6961626c655555494400000000000000000000000000000000000000000000006064820152608401610b59565b50613953838383614162565b6001600160a01b03808416600090815261020560209081526040808320938616835292905220546139539084908490613aff908590614d4c565b61353f565b613b0e8585614187565b604080517f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742960208201526001600160a01b038716818301819052606080830188905283518084039091018152608090920190925290613b77613b6e612838565b8686868661421f565b6001600160a01b031614613bcd5760405162461bcd60e51b815260206004820152601a60248201527f454950333030393a20696e76616c6964207369676e61747572650000000000006044820152606401610b59565b6001600160a01b03861660008181526101356020908152604080832089845290915280822060019055518792917f1cdd46ff242716cdaa72d159d339a485b3438398348d68f09d7c8c0a59353d8191a3505050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038084166000908152610205602090815260408083209386168352929052205480821115613d1f5760405162461bcd60e51b815260206004820152602960248201527f46696174546f6b656e3a2064656372656173656420616c6c6f77616e6365206260448201527f656c6f77207a65726f00000000000000000000000000000000000000000000006064820152608401610b59565b612e488484613aff8585614d35565b42841015613d7e5760405162461bcd60e51b815260206004820152601a60248201527f454950323631323a207065726d697420697320657870697265640000000000006044820152606401610b59565b6001600160a01b03871660009081526101686020526040812080547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918a918a918a919086613dcc83614d9f565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040529050876001600160a01b0316613e2e613b6e612838565b6001600160a01b031614613e845760405162461bcd60e51b815260206004820152601a60248201527f454950323631323a20696e76616c6964207369676e61747572650000000000006044820152606401610b59565b613e8f88888861353f565b5050505050505050565b613ea58985888861429c565b604080517f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226760208201526001600160a01b03808c169282019290925290891660608201526080810188905260a0810187905260c0810186905260e08101859052600090610100015b6040516020818303038152906040529050896001600160a01b0316613f33613b6e612838565b6001600160a01b031614613f895760405162461bcd60e51b815260206004820152601a60248201527f454950333030393a20696e76616c6964207369676e61747572650000000000006044820152606401610b59565b613f938a86614390565b613f9e8a8a8a613691565b50505050505050505050565b6001600160a01b03881633146140285760405162461bcd60e51b815260206004820152602160248201527f454950333030393a2063616c6c6572206d75737420626520746865207061796560448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610b59565b6140348985888861429c565b604080517fd099cc98ef71107a616c4f0f941f04c322d8e254fe26b3c6668db87aae413de860208201526001600160a01b03808c169282019290925290891660608201526080810188905260a0810187905260c0810186905260e0810185905260009061010001613f0d565b803b6141145760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610b59565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61416b836143e4565b6000825111806141785750805b1561395357612e488383614424565b6001600160a01b0382166000908152610135602090815260408083208484529091529020541561208e5760405162461bcd60e51b815260206004820152602a60248201527f454950333030393a20617574686f72697a6174696f6e2069732075736564206f60448201527f722063616e63656c6564000000000000000000000000000000000000000000006064820152608401610b59565b60008086838051906020012060405160200161426d9291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b60405160208183030381529060405280519060200120905061429181878787614450565b979650505050505050565b8142116143115760405162461bcd60e51b815260206004820152602760248201527f454950333030393a20617574686f72697a6174696f6e206973206e6f7420796560448201527f742076616c6964000000000000000000000000000000000000000000000000006064820152608401610b59565b8042106143865760405162461bcd60e51b815260206004820152602160248201527f454950333030393a20617574686f72697a6174696f6e2069732065787069726560448201527f64000000000000000000000000000000000000000000000000000000000000006064820152608401610b59565b612e488484614187565b6001600160a01b03821660008181526101356020908152604080832085845290915280822060019055518392917f98de503528ee59b575ef0c0a2576a82497bfc029a5685b209e9ec333479b10a591a35050565b6143ed816140a0565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606144498383604051806060016040528060278152602001614dd760279139614633565b9392505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156144e85760405162461bcd60e51b815260206004820152602660248201527f45435265636f7665723a20696e76616c6964207369676e61747572652027732760448201527f2076616c756500000000000000000000000000000000000000000000000000006064820152608401610b59565b8360ff16601b1415801561450057508360ff16601c14155b156145735760405162461bcd60e51b815260206004820152602660248201527f45435265636f7665723a20696e76616c6964207369676e61747572652027762760448201527f2076616c756500000000000000000000000000000000000000000000000000006064820152608401610b59565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa1580156145c7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661462a5760405162461bcd60e51b815260206004820152601c60248201527f45435265636f7665723a20696e76616c6964207369676e6174757265000000006044820152606401610b59565b95945050505050565b6060833b6146a95760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610b59565b600080856001600160a01b0316856040516146c49190614dba565b600060405180830381855af49150503d80600081146146ff576040519150601f19603f3d011682016040523d82523d6000602084013e614704565b606091505b509150915061471482828661471e565b9695505050505050565b6060831561472d575081614449565b82511561473d5782518084602001fd5b8160405162461bcd60e51b8152600401610b59919061481c565b82805461476390614cb2565b90600052602060002090601f01602090048101928261478557600085556147cb565b82601f1061479e57805160ff19168380011785556147cb565b828001600101855582156147cb579182015b828111156147cb5782518255916020019190600101906147b0565b506147d79291506147db565b5090565b5b808211156147d757600081556001016147dc565b60005b8381101561480b5781810151838201526020016147f3565b83811115612e485750506000910152565b602081526000825180602084015261483b8160408501602087016147f0565b601f01601f19169190910160400192915050565b6001600160a01b038116811461136a57600080fd5b80356111068161484f565b6000806040838503121561488257600080fd5b823561488d8161484f565b946020939093013593505050565b6000806000606084860312156148b057600080fd5b83356148bb8161484f565b925060208401356148cb8161484f565b929592945050506040919091013590565b6000602082840312156148ee57600080fd5b81356144498161484f565b60006020828403121561490b57600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561495c5761495c614912565b604051601f8501601f19908116603f0116810190828211818310171561498457614984614912565b8160405280935085815286868601111561499d57600080fd5b858560208301376000602087830101525050509392505050565b600080604083850312156149ca57600080fd5b82356149d58161484f565b9150602083013567ffffffffffffffff8111156149f157600080fd5b8301601f81018513614a0257600080fd5b614a1185823560208401614941565b9150509250929050565b803560ff8116811461110657600080fd5b600080600080600060a08688031215614a4457600080fd5b8535614a4f8161484f565b945060208601359350614a6460408701614a1b565b94979396509394606081013594506080013592915050565b600082601f830112614a8d57600080fd5b61444983833560208501614941565b60008060008060008060008060006101208a8c031215614abb57600080fd5b893567ffffffffffffffff80821115614ad357600080fd5b614adf8d838e01614a7c565b9a5060208c0135915080821115614af557600080fd5b614b018d838e01614a7c565b995060408c0135915080821115614b1757600080fd5b50614b248c828d01614a7c565b975050614b3360608b01614a1b565b9550614b4160808b01614864565b9450614b4f60a08b01614864565b9350614b5d60c08b01614864565b9250614b6b60e08b01614864565b9150614b7a6101008b01614864565b90509295985092959850929598565b600080600080600080600060e0888a031215614ba457600080fd5b8735614baf8161484f565b96506020880135614bbf8161484f565b95506040880135945060608801359350614bdb60808901614a1b565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215614c0a57600080fd5b8235614c158161484f565b91506020830135614c258161484f565b809150509250929050565b60008060008060008060008060006101208a8c031215614c4f57600080fd5b8935614c5a8161484f565b985060208a0135614c6a8161484f565b975060408a0135965060608a0135955060808a0135945060a08a01359350614c9460c08b01614a1b565b925060e08a013591506101008a013590509295985092959850929598565b600181811c90821680614cc657607f821691505b60208210811415614d00577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015614d4757614d47614d06565b500390565b60008219821115614d5f57614d5f614d06565b500190565b600060208284031215614d7657600080fd5b8151801515811461444957600080fd5b600060208284031215614d9857600080fd5b5051919050565b6000600019821415614db357614db3614d06565b5060010190565b60008251614dcc8184602087016147f0565b919091019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122088b0c5194b9eca0801c00f098997e6c9042e68a8d796e28173d6611567e0d9a464736f6c634300080b0033" +} diff --git a/packages/core/jpyc_core_sdk/jpyc.py b/packages/core/jpyc_core_sdk/jpyc.py index 9a5eb8e..bf97691 100644 --- a/packages/core/jpyc_core_sdk/jpyc.py +++ b/packages/core/jpyc_core_sdk/jpyc.py @@ -24,7 +24,7 @@ TransactionFailed, TransactionSimulationFailed, ) -from .utils.types import ContractVersion, TransactionArgs +from .utils.types import ContractType, TransactionArgs from .utils.validators import Bytes32, ChecksumAddress, Uint8, Uint256 @@ -34,10 +34,10 @@ class JPYC(IJPYC): def __init__( self, client: SdkClient, - contract_version: ContractVersion = "2", + contract_type: ContractType = "jpyc", contract_address: EthChecksumAddress | None = None, ) -> None: - """Constructor that initializes JPYC client. + """Constructor that initializes a JPYC client. Notes: - If `client` parameter is configured to use localhost network,\ @@ -48,7 +48,7 @@ def __init__( Args: client (SdkClient): Configured SDK client - contract_version (ContractVersion): Contract version + contract_type (ContractType): Contract type (`jpyc` or `jpyc_prepaid`) contract_address (EthChecksumAddress, optional): Contract address """ if ( @@ -57,12 +57,12 @@ def __init__( ): address = self.__deploy_contract( client=client, - contract_version=contract_version, + contract_type=contract_type, ) contract = self.__get_contract( client=client, contract_address=address, - contract_version=contract_version, + contract_type=contract_type, ) self.__initialize_contract( client=client, @@ -72,12 +72,12 @@ def __init__( address = ( contract_address if contract_address is not None - else get_proxy_address(contract_version=contract_version) + else get_proxy_address(contract_type=contract_type) ) contract = self.__get_contract( client=client, contract_address=address, - contract_version=contract_version, + contract_type=contract_type, ) self.client = client @@ -92,7 +92,7 @@ def __init__( @staticmethod def __deploy_contract( client: SdkClient, - contract_version: ContractVersion = "2", + contract_type: ContractType = "jpyc", ) -> ChecksumAddress: """Deploy contracts to the configured network. @@ -102,12 +102,12 @@ def __deploy_contract( Args: client (SdkClient): Configured SDK client - contract_version (ContractVersion): Contract version + contract_type (ContractType): Contract type Returns: ChecksumAddress: Address of the deployed contracts """ - file_path = resolve_artifacts_file_path(contract_version=contract_version) + file_path = resolve_artifacts_file_path(contract_type=contract_type) contract = client.w3.eth.contract( abi=get_artifacts(file_path, "abi"), bytecode=get_artifacts(file_path, "bytecode"), @@ -120,14 +120,14 @@ def __deploy_contract( def __get_contract( client: SdkClient, contract_address: ChecksumAddress, - contract_version: ContractVersion = "2", + contract_type: ContractType = "jpyc", ) -> Contract: """Get contract instance from the configured network. Args: client (SdkClient): Configured SDK client contract_address (ChecksumAddress): Contract address - contract_version (ContractVersion): Contract version + contract_type (ContractType): Contract type Returns: Contract: Address of the deployed contracts @@ -135,9 +135,7 @@ def __get_contract( return client.w3.eth.contract( # type: ignore[call-overload] address=contract_address, abi=get_artifacts( - file_path=resolve_artifacts_file_path( - contract_version=contract_version - ), + file_path=resolve_artifacts_file_path(contract_type=contract_type), artifact_type="abi", ), ) diff --git a/packages/core/jpyc_core_sdk/utils/README.md b/packages/core/jpyc_core_sdk/utils/README.md index e067a0f..1170b5a 100644 --- a/packages/core/jpyc_core_sdk/utils/README.md +++ b/packages/core/jpyc_core_sdk/utils/README.md @@ -3,7 +3,7 @@ > [!IMPORTANT] > This `README` is mainly for the advanced users (e.g., contributors of this repo). -This directory contains a collection of utility tools (e.g., functions, type definitions, constants) for the SDK. +This directory contains a collection of utility tools (e.g., functions, type definitions, constants) of the SDK. ## 🌲 Directory Structure diff --git a/packages/core/jpyc_core_sdk/utils/__init__.py b/packages/core/jpyc_core_sdk/utils/__init__.py index a5be385..92dc659 100644 --- a/packages/core/jpyc_core_sdk/utils/__init__.py +++ b/packages/core/jpyc_core_sdk/utils/__init__.py @@ -33,7 +33,7 @@ ArtifactType, ChainMetadata, ChainName, - ContractVersion, + ContractType, ) from .validators import ( Bytes32, @@ -75,7 +75,7 @@ "ArtifactType", "ChainMetadata", "ChainName", - "ContractVersion", + "ContractType", # validators "Bytes32", "ChecksumAddress", diff --git a/packages/core/jpyc_core_sdk/utils/addresses.py b/packages/core/jpyc_core_sdk/utils/addresses.py index 5a5b7fa..44d9682 100644 --- a/packages/core/jpyc_core_sdk/utils/addresses.py +++ b/packages/core/jpyc_core_sdk/utils/addresses.py @@ -8,7 +8,7 @@ from web3 import Web3 from web3.constants import ADDRESS_ZERO -from .types import ContractVersion +from .types import ContractType #################################### # Address-related helper functions # @@ -39,22 +39,20 @@ def is_valid_address(address: str) -> bool: return Web3.is_checksum_address(address) -def get_proxy_address(contract_version: ContractVersion) -> ChecksumAddress: - """Get proxy address from the specified version. - - Note: - Default address should be the address of the latest version \ - (e.g., v2 as of May 2025). +def get_proxy_address(contract_type: ContractType) -> ChecksumAddress: + """Get proxy address from the specified contract type. Args: - contract_version (ContractVersion): Contract version + contract_type (ContractType): Contract type (`jpyc` or `jpyc_prepaid`) Returns: ChecksumAddress: Checksum address of proxy contract """ - match contract_version: - case "2": - return V2_PROXY_ADDRESS + match contract_type: + case "jpyc": + return JPYC_PROXY_ADDRESS + case "jpyc_prepaid": + return JPYC_PREPAID_PROXY_ADDRESS ###################### @@ -63,7 +61,11 @@ def get_proxy_address(contract_version: ContractVersion) -> ChecksumAddress: ZERO_ADDRESS: Final[ChecksumAddress] = calc_checksum_address(str(ADDRESS_ZERO)) """ChecksumAddress: Zero address.""" -V2_PROXY_ADDRESS: Final[ChecksumAddress] = calc_checksum_address( +JPYC_PROXY_ADDRESS: Final[ChecksumAddress] = calc_checksum_address( + "0xE7C3D8C9a439feDe00D2600032D5dB0Be71C3c29" +) +"""ChecksumAddress: Proxy address of JPYC contract.""" +JPYC_PREPAID_PROXY_ADDRESS: Final[ChecksumAddress] = calc_checksum_address( "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB" ) -"""ChecksumAddress: JPYCv2 address.""" +"""ChecksumAddress: Proxy address of JPYC Prepaid contract.""" diff --git a/packages/core/jpyc_core_sdk/utils/artifacts.py b/packages/core/jpyc_core_sdk/utils/artifacts.py index 92c2b5d..3f86e92 100644 --- a/packages/core/jpyc_core_sdk/utils/artifacts.py +++ b/packages/core/jpyc_core_sdk/utils/artifacts.py @@ -2,21 +2,19 @@ from pathlib import Path from typing import Any -from .types import ArtifactType, ContractVersion +from .types import ArtifactType, ContractType -def resolve_artifacts_file_path(contract_version: ContractVersion) -> Path: - """Resolve the path of artifacts file from the specified contract version. +def resolve_artifacts_file_path(contract_type: ContractType) -> Path: + """Resolve the path of artifacts file from the specified contract type. Args: - contract_version (ContractVersion): Contract version + contract_type (ContractType): Contract type Returns: Path: Absolute path of artifacts file """ - path = Path(__file__).parent.parent.joinpath( - "artifacts", f"v{contract_version}.json" - ) + path = Path(__file__).parent.parent.joinpath("artifacts", f"{contract_type}.json") return path.absolute() diff --git a/packages/core/jpyc_core_sdk/utils/types.py b/packages/core/jpyc_core_sdk/utils/types.py index 7b1ef98..b0d94af 100644 --- a/packages/core/jpyc_core_sdk/utils/types.py +++ b/packages/core/jpyc_core_sdk/utils/types.py @@ -30,8 +30,8 @@ class NetworkMetadata(TypedDict): # Contracts # ############# -type ContractVersion = Literal["2"] -"""A type that contains available contract versions.""" +type ContractType = Literal["jpyc", "jpyc_prepaid"] +"""A type that contains available contract types.""" type ArtifactType = Literal["abi", "bytecode"] """A type that contains types of contract artifacts.""" diff --git a/packages/core/pyproject.toml b/packages/core/pyproject.toml index b75e4e0..72b40df 100644 --- a/packages/core/pyproject.toml +++ b/packages/core/pyproject.toml @@ -1,9 +1,9 @@ [project] name = "jpyc-core-sdk" -version = "1.0.5" +version = "1.1.0" requires-python = ">=3.12" license = "MIT" -description = "A Python SDK for interacting with JPYCv2 contracts" +description = "Python SDK for interacting with JPYC contracts" readme = "README.md" keywords = [ "jpyc", diff --git a/tests/core/utils/test_addresses.py b/tests/core/utils/test_addresses.py index b2eff5e..deca67d 100644 --- a/tests/core/utils/test_addresses.py +++ b/tests/core/utils/test_addresses.py @@ -7,9 +7,10 @@ ) -VALID_CHECKSUM_ADDRESS = "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB" +JPYC_PROXY_CHECKSUM_ADDRESS = "0xE7C3D8C9a439feDe00D2600032D5dB0Be71C3c29" +JPYC_PREPAID_PROXY_CHECKSUM_ADDRESS = "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB" INVALID_CHECKSUM_ADDRESS = "0x431d5dff03120afa4bdf332c61a6e1766ef37bdb" -VALID_ADDRESS_IN_INTEGER = 383157291474631222722397742278122605068030278619 +JPYC_PREPAID_PROXY_ADDRESS_IN_INTEGER = 383157291474631222722397742278122605068030278619 INVALID_ADDRESS_IN_INTEGER = 0 @@ -19,7 +20,7 @@ ], [ pytest.param( - VALID_CHECKSUM_ADDRESS, + JPYC_PREPAID_PROXY_CHECKSUM_ADDRESS, id="valid checksum address", ), pytest.param( @@ -27,7 +28,7 @@ id="invalid checksum address", ), pytest.param( - VALID_ADDRESS_IN_INTEGER, + JPYC_PREPAID_PROXY_ADDRESS_IN_INTEGER, id="valid address in integer", ), ], @@ -36,7 +37,7 @@ def test_calc_checksum_address(address): checksum_address = calc_checksum_address(address=address) assert type(checksum_address) is str - assert checksum_address == VALID_CHECKSUM_ADDRESS + assert checksum_address == JPYC_PREPAID_PROXY_CHECKSUM_ADDRESS def test_calc_checksum_address_failures(): @@ -50,9 +51,11 @@ def test_calc_checksum_address_failures(): "response", ], [ - pytest.param(VALID_CHECKSUM_ADDRESS, True, id="valid address"), + pytest.param(JPYC_PREPAID_PROXY_CHECKSUM_ADDRESS, True, id="valid address"), pytest.param(INVALID_CHECKSUM_ADDRESS, False, id="invalid address"), - pytest.param(VALID_ADDRESS_IN_INTEGER, False, id="valid address in integer"), + pytest.param( + JPYC_PREPAID_PROXY_ADDRESS_IN_INTEGER, False, id="valid address in integer" + ), pytest.param( INVALID_ADDRESS_IN_INTEGER, False, id="invalid address in integer" ), @@ -64,13 +67,18 @@ def test_is_valid_address(address, response): @pytest.mark.parametrize( [ - "contract_version", + "contract_type", "response", ], [ - pytest.param("2", VALID_CHECKSUM_ADDRESS, id="valid contract version"), - pytest.param("3", None, id="invalid contract version"), + pytest.param("jpyc", JPYC_PROXY_CHECKSUM_ADDRESS, id="contract type = 'jpyc'"), + pytest.param( + "jpyc_prepaid", + JPYC_PREPAID_PROXY_CHECKSUM_ADDRESS, + id="contract type = 'jpyc_prepaid'", + ), + pytest.param("v2", None, id="invalid contract type"), ], ) -def test_get_proxy_address(contract_version, response): - assert get_proxy_address(contract_version=contract_version) == response +def test_get_proxy_address(contract_type, response): + assert get_proxy_address(contract_type=contract_type) == response diff --git a/tests/core/utils/test_artifacts.py b/tests/core/utils/test_artifacts.py index 3ca0bc6..f372e1e 100644 --- a/tests/core/utils/test_artifacts.py +++ b/tests/core/utils/test_artifacts.py @@ -6,9 +6,24 @@ ) -def test_resolve_artifacts_file_path(): - path = resolve_artifacts_file_path(contract_version="2") - assert str(path).endswith("v2.json") is True +@pytest.mark.parametrize( + [ + "contract_type", + ], + [ + pytest.param( + "jpyc", + id="file path for artifacts of jpyc contract", + ), + pytest.param( + "jpyc_prepaid", + id="file path for artifacts of jpyc_prepaid contract", + ), + ], +) +def test_resolve_artifacts_file_path(contract_type): + path = resolve_artifacts_file_path(contract_type=contract_type) + assert str(path).endswith(f"{contract_type}.json") is True @pytest.mark.parametrize( @@ -30,7 +45,7 @@ def test_resolve_artifacts_file_path(): ], ) def test_get_artifacts(artifact_type, return_type): - path = resolve_artifacts_file_path(contract_version="2") + path = resolve_artifacts_file_path(contract_type="jpyc") artifact = get_artifacts(file_path=path, artifact_type=artifact_type) assert type(artifact) is return_type From f54ef1db471f8fda26846f76c283acf717273ba6 Mon Sep 17 00:00:00 2001 From: SeiyaKobayashi Date: Sun, 2 Nov 2025 21:20:01 +0900 Subject: [PATCH 2/8] Update READMEs & add READMEs in JP --- README-jp.md | 43 ++++++++ README.md | 4 +- packages/core/README-jp.md | 165 ++++++++++++++++++++++++++++ packages/core/README.md | 61 +++++----- packages/core/examples/README-jp.md | 32 ++++++ 5 files changed, 275 insertions(+), 30 deletions(-) create mode 100644 README-jp.md create mode 100644 packages/core/README-jp.md create mode 100644 packages/core/examples/README-jp.md diff --git a/README-jp.md b/README-jp.md new file mode 100644 index 0000000..d75fe6f --- /dev/null +++ b/README-jp.md @@ -0,0 +1,43 @@ +# JPYC Python SDK + +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE) +[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/jcam1/python-sdk/issues/new/choose) + +=> 英語版は[こちら](./README.md)。 + +## 💫 利用可能な SDK + +各 SDK に関する詳細は、それぞれの `README` を参照ください。 + +| SDK 名 | `README` | +| --------------: | :----------------------------------------- | +| `jpyc-core-sdk` | [packages/core](./packages/core/README.md) | + +## ⬇️ インストール + +### 1. リポジトリのクローン + +```sh +# リポジトリのクローン +$ git clone https://github.com/jcam1/python-sdk.git +# `python-sdk`ディレクトリへの移動 +$ cd python-sdk +``` + +### 2. `uv` のインストール + +このリポジトリでは、パッケージ管理ツールとして `uv` を利用しています。デバイスにインストールされていない場合は、[uv 公式ドキュメント](https://docs.astral.sh/uv/getting-started/installation/)に沿って各種ダウンロード・インストールを進めてください。例として、以下のコマンドは MacOS 上に `uv` をインストールします。 + +```sh +curl -LsSf https://astral.sh/uv/install.sh | sh +``` + +### 3. パッケージのインストール + +```sh +uv sync +``` + +## 💪🏻 コントリビューションを検討されている方へ + +詳細は [CONTRIBUTING.md](./CONTRIBUTING.md) を参照してください。 diff --git a/README.md b/README.md index e9c5b7b..750b625 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,11 @@ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE) [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/jcam1/python-sdk/issues/new/choose) -Monorepo for JPYC Python SDKs. +Monorepo of JPYC Python SDKs. => 日本語版は[こちら](./README-jp.md)。 ## 💫 Available SDKs -Please refer to `README`s of respective SDKs for more details. +Please refer to `README`s of the respective SDKs for more details. | name | `README` | | --------------: | :----------------------------------------- | diff --git a/packages/core/README-jp.md b/packages/core/README-jp.md new file mode 100644 index 0000000..05f32a4 --- /dev/null +++ b/packages/core/README-jp.md @@ -0,0 +1,165 @@ +# JPYC Core SDK + +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE) +![build](https://github.com/jcam1/python-sdk/actions/workflows/check.yml/badge.svg) + +JPYC Python SDK は、各ネットワーク上にデプロイされた JPYC コントラクトとやりとりをするための Python インターフェースです。=> 英語版は[こちら](./README.md)。 + +## ✅ 対応しているコントラクト種別・ネットワーク + +この SDK は2025年10月現在、以下のコントラクトバージョンとネットワークに対応しています。SDK クライアントを設定する際は、以下のいずれかのチェーン名・ネットワーク名の組み合わせを指定してください。 + +> [!NOTE] +> 以下のネットワーク以外にも、ローカルネットワーク(チェーン名: `localhost`・ネットワーク名: `devnet`)にデプロイした JPYC コントラクトのアドレスを設定して、ローカル環境での開発や検証に使うこともできます。 + +> [!IMPORTANT] +> この SDK は2025年10月現在、`HTTPプロバイダー`のみに対応しています。他プロバイダー(e.g., `WebSocketプロバイダー`)への対応も計画中ですので、定期的にこのリポジトリーを確認することをお勧めします。 + +| | JPYC | JPYC Prepaid | チェーン名 | ネットワーク名 | +| ----------------------------: | :--: | :----------: | :----------: | :----------: | +| Ethereum メインネット | ✅ | ✅ | `ethereum` | `mainnet` | +| Ethereum Sepolia テストネット | ✅ | ✅ | `ethereum` | `sepolia` | +| Polygon PoS メインネット | ✅ | ✅ | `polygon` | `mainnet` | +| Polygon Amoy テストネット | ✅ | ✅ | `polygon` | `amoy` | +| Gnosis メインネット | ✅ | ✅ | `gnosis` | `mainnet` | +| Gnosis Chiado テストネット | ✅ | ✅ | `gnosis` | `chiado` | +| Avalanche メインネット | ✅ | ✅ | `avalanche` | `mainnet` | +| Avalanche Fuji テストネット | ✅ | ✅ | `avalanche` | `fuji` | +| Astar メインネット | ✅ | ✅ | `astar` | `mainnet` | +| Shiden メインネット | ✅ | ✅ | `shiden` | `mainnet` | + +## 🪄 使い方 + +### 1. `jpyc-core-sdk` パッケージのインストール + +```sh +# uv +$ uv add jpyc-core-sdk +# poetry +$ poetry add jpyc-core-sdk +# pip +$ pip install jpyc-core-sdk +``` + +### 2. SDK クラアントの設定 + +```py +from jpyc_core_sdk import JPYC, SdkClient + +# デフォルトのRPCエンドポイントを用いた設定例 +client = SdkClient( + chain_name="polygon", + network_name="mainnet", + private_key={PRIVATE_KEY}, +) + +# 独自のRPCエンドポイントを用いた設定例 +client = SdkClient( + chain_name="polygon", + network_name="mainnet", + private_key={PRIVATE_KEY}, + rpc_endpoint={CUSTOM_RPC_ENDPOINT}, +) + +# JPYCクライアントの初期化 +jpyc = JPYC(client=client) +``` + +> [!TIP] +> SDK の内部では設計上の観点から環境変数を用いていません。一方で、アプリケーション側から SDK に対して秘匿性の高いデータ(e.g., プライベートキー)を渡す際には、ハードコードせず、環境変数を使用するなどの考慮が別途必要です。 + +### 3. JPYC コントラクトの呼び出し + +ステップ 2 で初期化した JPYC クライアントを用いて、Python アプリケーション内で、任意の JPYC コントラクト関数を呼び出すことができます。 + +```py +from {CONFIG_FILE} import jpyc + +... +# `transfer`関数の呼び出し +tx_hash = jpyc.transfer( + to={TO_ADDRESS}, + value=2025, +) +... +``` + +## ✨ 実装例 + +[`examples`ディレクトリ](./examples/)に SDK を使ったコードの実装例を多数用意しています。ディレクトリ内の `README` にしたがって、サンプルコードを実行するための環境構築等を進めることができます。 + +## 🛠 開発者向けリソース + +> [!IMPORTANT] +> これ以降のセクションは、主に開発者等のコントリビューターを想定して記述しています。 + +### 📦 パッケージ管理 + +#### パッケージの追加 + +```sh +# 本番環境用のパッケージ追加 +$ uv add {package_name} +# 開発環境用のパッケージ追加 +$ uv add --dev {package_name} +``` + +#### パッケージの削除 + +```sh +# 本番環境用のパッケージ削除 +$ uv remove {package_name} +# 開発環境用のパッケージ削除 +$ uv remove --dev {package_name} +``` + +### 🔎 テスト + +詳細は `test` ディレクトリ内の[`README`](../../tests/README.md)を参照してください。 + +### ✅ 静的コード解析 + +> [!NOTE] +> 静的コード解析は、[CI ワークフロー](../../.github/workflows/check.yml)上でも実行されます。 + +#### リンター + +```sh +# リンターの適用(修正なし) +$ uv run ruff check {dir_name} +# リンターの適用 +$ uv run ruff check {dir_name} --fix +``` + +#### フォーマッター + +```sh +# フォーマッターの適用(修正なし) +$ uv run ruff format {dir_name} --check +# フォーマッターの適用 +$ uv run ruff format {dir_name} +``` + +#### 型チェック + +```sh +# mypyの実行 +$ uv run mypy {dir_name} +``` + +#### プレコミットスクリプト + +プレコミットスクリプトは [`.pre-commit-config.yaml`](../../.pre-commit-config.yaml) で設定されており、git 経由でコミットする毎に実行されます。実際にコミットせずに単体で挙動を確認したい場合は、以下のコマンドを実行してみましょう。 + +```sh +# 実際のコミットを行わずにプレコミットスクリプトを実行 +$ uv run pre-commit run --all-files +``` + +### 📝 コメント・ドックストリング + +コード内のドックストリングは [Google スタイル](https://google.github.io/styleguide/pyguide.html#38-comments-and-docstrings)に沿って書く必要があります。 + +### 📚 開発者向けドキュメント + +ソースコードから自動生成された開発者向けドキュメントは[ここ](../../docs/core/)からアクセスできます。 diff --git a/packages/core/README.md b/packages/core/README.md index dc4c125..f8da914 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -1,9 +1,32 @@ -# Core SDK +# JPYC Core SDK [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE) ![build](https://github.com/jcam1/python-sdk/actions/workflows/check.yml/badge.svg) -A Python SDK to interact with [the JPYCv2's core contracts](https://github.com/jcam1/JPYCv2/blob/main/contracts/v1/FiatTokenV1.sol). Ideal for those who want to interact with JPYC protocol in any Python-backend environments. +Python SDK to interact with [the JPYC core contracts](https://github.com/jcam1/JPYCv2/blob/main/contracts/v1/FiatTokenV1.sol). Ideal for those who want to interact with the JPYC protocol in any Python-backend environments. => 日本語版は[こちら](./README-jp.md)。 + +## ✅ Supported Contract Types & Networks + +The SDK supports the following contract types and networks as of October 2025. Please use one of the combinations of chain & network names when configuring the SDK clients. + +> [!NOTE] +> You could also configure your locally-deployed contracts for local development and/or testing. For chain & network names, please use `localhost`-`devnet` pair. + +> [!IMPORTANT] +> **We're currently supporting `HTTPProvider` (the most simple & widely-used one) only.** More providers (notably `WebSocketProvider`) are to be supported in the near future, so stay tuned! + +| | JPYC | JPYC Prepaid | Chain Name | Network Name | +| ----------------------------: | :--: | :----------: | :----------: | :----------: | +| Ethereum Mainnet | ✅ | ✅ | `ethereum` | `mainnet` | +| Ethereum Sepolia Testnet | ✅ | ✅ | `ethereum` | `sepolia` | +| Polygon PoS Mainnet | ✅ | ✅ | `polygon` | `mainnet` | +| Polygon Amoy Testnet | ✅ | ✅ | `polygon` | `amoy` | +| Gnosis Mainnet | ✅ | ✅ | `gnosis` | `mainnet` | +| Gnosis Chiado Testnet | ✅ | ✅ | `gnosis` | `chiado` | +| Avalanche Mainnet | ✅ | ✅ | `avalanche` | `mainnet` | +| Avalanche Fuji Testnet | ✅ | ✅ | `avalanche` | `fuji` | +| Astar Mainnet | ✅ | ✅ | `astar` | `mainnet` | +| Shiden Mainnet | ✅ | ✅ | `shiden` | `mainnet` | ## 🪄 Usage @@ -25,14 +48,14 @@ from jpyc_core_sdk import JPYC, SdkClient # Configure SDK client using default RPC endpoint client = SdkClient( - chain_name="ethereum", + chain_name="polygon", network_name="mainnet", private_key={PRIVATE_KEY}, ) # Or configure SDK client using custom RPC endpoint client = SdkClient( - chain_name="ethereum", + chain_name="polygon", network_name="mainnet", private_key={PRIVATE_KEY}, rpc_endpoint={CUSTOM_RPC_ENDPOINT}, @@ -61,31 +84,9 @@ tx_hash = jpyc.transfer( ... ``` -> [!NOTE] -> -> - More code examples are available at [`examples` directory](./examples/). -> - More detailed development documentation is available at [`docs` directory](../../docs/core/). - -## ⛓️ Supported Networks +## ✨ Code Examples -Please use one of the combinations of chain-network names when configuring the SDK clients. - -> [!TIP] -> For local testing & development, you could use `localhost`-`devnet` pair. - -| Chain Name | Network Names | -| ----------: | :------------------- | -| `ethereum` | `mainnet`, `sepolia` | -| `polygon` | `mainnet`, `amoy` | -| `gnosis` | `mainnet`, `chiado` | -| `avalanche` | `mainnet`, `fuji` | -| `astar` | `mainnet` | -| `shiden` | `mainnet` | -| `localhost` | `devnet` | - -## 💬 Supported Providers - -**We're currently supporting `HTTPProvider` (the most simple & widely-used one) only.** More providers (notably `WebSocketProvider`) are to be supported in the near future, so stay tuned! +For your reference, we've implemented code examples in a separate [`examples` directory](./examples/). Please follow the instructions there to get started. ## 🛠 Development @@ -158,3 +159,7 @@ $ uv run pre-commit run --all-files ### 📝 Comments & Docstrings Docstrings should be written in [the Google-style](https://google.github.io/styleguide/pyguide.html#38-comments-and-docstrings). + +### 📚 Documentation + +You can find the auto-generated developer documents [here](../../docs/core/). diff --git a/packages/core/examples/README-jp.md b/packages/core/examples/README-jp.md new file mode 100644 index 0000000..0f4fa13 --- /dev/null +++ b/packages/core/examples/README-jp.md @@ -0,0 +1,32 @@ +# コードサンプル・実装例 + +このディレクトリでは、JPYC Python SDK を用いて JPYC コントラクトとやりとりを行うコードサンプルを複数用意しています。 + +## 🏃🏻 コードサンプルの実行 + +> [!IMPORTANT] +> コードサンプルの実行前に、ローカル環境でブロックチーンネットワーク(i.e., 実行クライアント)を立ち上げておく必要があります。[Foundry](https://book.getfoundry.sh/) や [Hardhat](https://hardhat.org/) のようなフレームワークや、[Geth](https://geth.ethereum.org/docs) のような実行クライアントを使用することでローカルネットワークを立ち上げることができます。 + +```sh +# `core`パッケージディレクトリに移動 +$ cd python-sdk/packages/core +# `transfer.py`を実行 +$ uv run examples/transfer.py +``` + +## 🌲 ディレクトリ構造 + +コマンド経由で、以下のコードサンプル(モジュール)を実行することができます。 + +| Module | Description | +| ----------------------------------------------------------------: | :--------------------------------------------------------- | +| [`main`](./main.py) | SDK クライアントの設定例 | +| [`transfer`](./transfer.py) | `transfer` メソッドを呼び出す実装例 | +| [`transfer_from`](./transfer_from.py) | `approve` と `transferFrom` メソッドを呼び出す実装例 | +| [`transfer_with_authorization`](./transfer_with_authorization.py) | `transferWithAuthorization` メソッドを呼び出す実装例 | +| [`receive_with_authorization`](./receive_with_authorization.py) | `receiveWithAuthorization` メソッドを呼び出す実装例 | +| [`cancel_authorization`](./cancel_authorization.py) | `cancelAuthorization` メソッドを呼び出す実装例 | +| [`permit`](./permit.py) | `permit` メソッドを呼び出す実装例 | +| [`mint`](./mint.py) | `mint` メソッドを呼び出す実装例 | +| [`constants`](./constants.py) | コードサンプルで使用している定数群 | +| [`utils`](./utils.py) | コードサンプルで使用しているユーティリティ関数群 | From f8555710130a321fd8cd0d187d0ce9654a6fe88e Mon Sep 17 00:00:00 2001 From: SeiyaKobayashi Date: Sun, 2 Nov 2025 21:20:18 +0900 Subject: [PATCH 3/8] Update 'CONTRIBUTING.md' --- CONTRIBUTING.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8e0e2fa..43197e8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,34 +1,34 @@ -# Contributing Guidelines +# How to Contribute -We appreciate your interest to contribute to this project! Please read the following to see how you could contribute. +We appreciate your interest to contribute to this project! Please read and follow the steps below to see how you could contribute to this project. -## 📝 Create an Issue +### 1. Create an Issue -The first thing to do is to create a new issue. Feel free to create new issues from [here](https://github.com/jcam1/python-sdk/issues/new/choose) to propose/request new features or report any bugs you found, following the respective templates. +The first thing to do is to create a new issue. Feel free to create new issues from [here](https://github.com/jcam1/python-sdk/issues/new/choose) to propose/request new features or report bugs. -## ⬇️ Clone This Repo +### 2. Fork & Clone Repo -Next, clone this repository on `develop` branch. +Next, fork this repository to your GitHub account, and clone it to your local environment. -> [!TIP] -> Our default branch is set to `main`. +> [!IMPORTANT] +> Clone `develop` branch for development, while our default branch is `main`. ```sh -git clone -b develop https://github.com/jcam1/python-sdk.git +$ git clone -b develop https://github.com/{YOUR_USER_NAME}/python-sdk.git ``` -## ⚡ Checkout to a New Branch +### 3. Checkout to a New Branch -You then need to `checkout` to a new branch (name whatever you would like) from the cloned `develop` branch. +You then need to checkout to a new branch (name whatever you would like) from the cloned `develop` branch. ```sh -git checkout -b ${your_branch_name} +$ git checkout -b ${YOUR_BRANCH_NAME} ``` -## 🛠 Write Code +### 4. Write Code -Now, write code to implement the proposed features and/or to fix bugs. Please refer to `README`s of respective SDKs for more details. +Now, write code to implement the proposed features and/or to fix bugs. Please refer to `README`s of the respective modules for more details. -## 🌟 Open a Pull Request +### 5. Open a Pull Request -Finally, open a new PR from your branch to `develop` branch, and describe what you'll have done following [our PR template](./.github/pull_request_template.md). +Finally, open a new PR from your branch to `develop` branch on our (original) repo, and describe what you'll have done. From 2d5309db000bcd52d4db7b2f1494dce565e89c48 Mon Sep 17 00:00:00 2001 From: SeiyaKobayashi Date: Sun, 2 Nov 2025 21:20:44 +0900 Subject: [PATCH 4/8] Update licenses --- LICENSE | 2 +- packages/core/LICENSE | 2 +- pyproject.toml | 2 +- uv.lock | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/LICENSE b/LICENSE index 5caab71..8260334 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2025 JPYC株式会社 +Copyright (c) 2025 - present JPYC株式会社 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/packages/core/LICENSE b/packages/core/LICENSE index 5caab71..8260334 100644 --- a/packages/core/LICENSE +++ b/packages/core/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2025 JPYC株式会社 +Copyright (c) 2025 - present JPYC株式会社 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pyproject.toml b/pyproject.toml index f9859c7..ee60df1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "jpyc-python-sdks" -version = "1.0.5" +version = "1.1.0" requires-python = ">=3.12" description = "Python SDKs for JPYC protocols" readme = "README.md" diff --git a/uv.lock b/uv.lock index 9f5a3c4..a2e22b6 100644 --- a/uv.lock +++ b/uv.lock @@ -547,7 +547,7 @@ wheels = [ [[package]] name = "jpyc-core-sdk" -version = "1.0.5" +version = "1.1.0" source = { editable = "packages/core" } dependencies = [ { name = "eth-typing" }, @@ -582,7 +582,7 @@ dev = [ [[package]] name = "jpyc-python-sdks" -version = "1.0.5" +version = "1.1.0" source = { virtual = "." } [package.dev-dependencies] From 5ff68c098e363fc17b26038fce5352bd6618f4fb Mon Sep 17 00:00:00 2001 From: SeiyaKobayashi Date: Sun, 2 Nov 2025 21:21:09 +0900 Subject: [PATCH 5/8] Update dev docs for 'core' package --- docs/README.md | 2 +- docs/core/jpyc_core_sdk.html | 1535 ++++++++++++++-------------- docs/core/jpyc_core_sdk/utils.html | 102 +- docs/core/search.js | 2 +- 4 files changed, 814 insertions(+), 827 deletions(-) diff --git a/docs/README.md b/docs/README.md index 4f4ff0c..23e126d 100644 --- a/docs/README.md +++ b/docs/README.md @@ -13,7 +13,7 @@ Run the following commands that generate a collection of documents under [`./doc # cd into the root directory $ cd python-sdk # generate documentation from the google-styled docstrings -$ uv run pdoc ./packages/core/jpyc-core-sdk -o ./docs/core -d google +$ uv run pdoc ./packages/core/jpyc_core_sdk -o ./docs/core -d google ``` ## 🔍 UI diff --git a/docs/core/jpyc_core_sdk.html b/docs/core/jpyc_core_sdk.html index b075260..7a80f8c 100644 --- a/docs/core/jpyc_core_sdk.html +++ b/docs/core/jpyc_core_sdk.html @@ -146,21 +146,20 @@

-
 1# from importlib.metadata import version
+                        
 1from importlib.metadata import version
  2
  3from .client import SdkClient
  4from .jpyc import JPYC
  5
- 6# __version__ = version("jpyc-core-sdk")
+ 6__version__ = version("jpyc-core-sdk")
  7__all__ = [
- 8    # "__version__",
- 9    # client
-10    "SdkClient",
-11    # jpyc
-12    "JPYC",
-13    # utils
-14    "utils",
-15]
+ 8    # client
+ 9    "SdkClient",
+10    # jpyc
+11    "JPYC",
+12    # utils
+13    "utils",
+14]
 
@@ -176,122 +175,122 @@

-
 25class SdkClient(ISdkClient):
- 26    """SDK client."""
- 27
- 28    @validate_call
- 29    def __init__(
- 30        self,
- 31        chain_name: ChainName | None = None,
- 32        network_name: str | None = None,
- 33        rpc_endpoint: RpcEndpoint | None = None,
- 34        private_key: Bytes32 | None = None,
- 35    ) -> None:
- 36        """Constructor that initializes SDK client.
- 37
- 38        Notes:
- 39            - Either `chain_name` & `network_name` parameters\
- 40              or `rpc_endpoint` parameter are required.
- 41            - This constructor prioritizes `rpc_endpoint` parameter over\
- 42            `chain_name` & `network_name` parameters when configuring `rpc_endpoint`.
- 43
- 44        Args:
- 45            chain_name (str, optional): Chain name
- 46            network_name (str, optional): Network name
- 47            rpc_endpoint (RpcEndpoint, optional): RPC endpoint
- 48            private_key (Bytes32, optional): private key of EOA
- 49
- 50        Raises:
- 51            InvalidBytes32: If the supplied `private_key` is not in a valid form
- 52            InvalidRpcEndpoint: If the supplied `rpc_endpoint` is not in a valid form
- 53            NetworkNotSupported: If the specified network is not supported by the SDK
- 54            ValidationError: If pydantic validation fails
- 55        """
- 56        rpc_endpoint = (
- 57            rpc_endpoint
- 58            if rpc_endpoint is not None
- 59            else get_default_rpc_endpoint(chain_name, network_name)
- 60        )
- 61        account = Account.from_key(private_key) if private_key is not None else None
- 62        w3 = self.__configure_w3(
- 63            rpc_endpoint=rpc_endpoint,
- 64            account=account,
- 65        )
- 66
- 67        self.w3 = w3
- 68        """Web3: Configured web3 instance"""
- 69        self.rpc_endpoint = rpc_endpoint
- 70        """str: RPC endpoint"""
- 71        self.account = account
- 72        """LocalAccount | None: Account instance"""
- 73
- 74    @staticmethod
- 75    def __configure_w3(
- 76        rpc_endpoint: RpcEndpoint,
- 77        account: LocalAccount | None = None,
- 78    ) -> Web3:
- 79        """Configure a web3 instance.
- 80
- 81        Args:
- 82            rpc_endpoint (RpcEndpoint): RPC endpoint
- 83            account (LocalAccount, optional): Account instance
- 84
- 85        Returns:
- 86            Web3: Configured web3 instance
- 87        """
- 88        w3 = Web3(HTTPProvider(rpc_endpoint))
- 89        w3.middleware_onion.inject(
- 90            ExtraDataToPOAMiddleware,
- 91            name=POA_MIDDLEWARE,
- 92            layer=0,
- 93        )
- 94        if account is not None:
- 95            w3.eth.default_account = account.address
- 96            w3.middleware_onion.inject(
- 97                SignAndSendRawMiddlewareBuilder.build(account),
- 98                name=SIGN_MIDDLEWARE,
- 99                layer=0,
-100            )
-101        else:
-102            w3.eth.default_account = None  # type: ignore[assignment]
-103
-104        return w3
-105
-106    @validate_call
-107    def set_default_provider(self, chain_name: ChainName, network_name: str) -> Web3:
-108        self.w3 = self.__configure_w3(
-109            rpc_endpoint=get_default_rpc_endpoint(chain_name, network_name),
-110            account=self.account,
-111        )
-112
-113        return self.w3
-114
-115    @validate_call
-116    def set_custom_provider(self, rpc_endpoint: RpcEndpoint) -> Web3:
-117        self.w3 = self.__configure_w3(rpc_endpoint=rpc_endpoint, account=self.account)
-118
-119        return self.w3
-120
-121    @validate_call
-122    def set_account(self, private_key: Bytes32 | None) -> LocalAccount | None:
-123        if private_key is None:
-124            self.account = None
-125            self.w3 = self.__configure_w3(
-126                rpc_endpoint=self.rpc_endpoint,
-127            )
-128        else:
-129            self.account = Account.from_key(private_key)
-130            self.w3 = self.__configure_w3(
-131                rpc_endpoint=self.rpc_endpoint, account=self.account
-132            )
-133
-134        return self.account
-135
-136    def get_account_address(self) -> ChecksumAddress:
-137        if self.account is None:
-138            raise AccountNotInitialized()
-139
-140        return self.account.address
+            
 26class SdkClient(ISdkClient):
+ 27    """SDK client."""
+ 28
+ 29    @validate_call
+ 30    def __init__(
+ 31        self,
+ 32        chain_name: ChainName | None = None,
+ 33        network_name: str | None = None,
+ 34        rpc_endpoint: RpcEndpoint | None = None,
+ 35        private_key: Bytes32 | None = None,
+ 36    ) -> None:
+ 37        """Constructor that initializes SDK client.
+ 38
+ 39        Notes:
+ 40            - Either `chain_name` & `network_name` parameters\
+ 41              or `rpc_endpoint` parameter are required.
+ 42            - This constructor prioritizes `rpc_endpoint` parameter over\
+ 43            `chain_name` & `network_name` parameters when configuring `rpc_endpoint`.
+ 44
+ 45        Args:
+ 46            chain_name (str, optional): Chain name
+ 47            network_name (str, optional): Network name
+ 48            rpc_endpoint (RpcEndpoint, optional): RPC endpoint
+ 49            private_key (Bytes32, optional): private key of EOA
+ 50
+ 51        Raises:
+ 52            InvalidBytes32: If the supplied `private_key` is not in a valid form
+ 53            InvalidRpcEndpoint: If the supplied `rpc_endpoint` is not in a valid form
+ 54            NetworkNotSupported: If the specified network is not supported by the SDK
+ 55            ValidationError: If pydantic validation fails
+ 56        """
+ 57        rpc_endpoint = (
+ 58            rpc_endpoint
+ 59            if rpc_endpoint is not None
+ 60            else get_default_rpc_endpoint(chain_name, network_name)
+ 61        )
+ 62        account = Account.from_key(private_key) if private_key is not None else None
+ 63        w3 = self.__configure_w3(
+ 64            rpc_endpoint=rpc_endpoint,
+ 65            account=account,
+ 66        )
+ 67
+ 68        self.w3 = w3
+ 69        """Web3: Configured web3 instance"""
+ 70        self.rpc_endpoint = rpc_endpoint
+ 71        """str: RPC endpoint"""
+ 72        self.account = account
+ 73        """LocalAccount | None: Account instance"""
+ 74
+ 75    @staticmethod
+ 76    def __configure_w3(
+ 77        rpc_endpoint: RpcEndpoint,
+ 78        account: LocalAccount | None = None,
+ 79    ) -> Web3:
+ 80        """Configure a web3 instance.
+ 81
+ 82        Args:
+ 83            rpc_endpoint (RpcEndpoint): RPC endpoint
+ 84            account (LocalAccount, optional): Account instance
+ 85
+ 86        Returns:
+ 87            Web3: Configured web3 instance
+ 88        """
+ 89        w3 = Web3(HTTPProvider(rpc_endpoint))
+ 90        w3.middleware_onion.inject(
+ 91            ExtraDataToPOAMiddleware,
+ 92            name=POA_MIDDLEWARE,
+ 93            layer=0,
+ 94        )
+ 95        if account is not None:
+ 96            w3.eth.default_account = account.address
+ 97            w3.middleware_onion.inject(
+ 98                SignAndSendRawMiddlewareBuilder.build(account),
+ 99                name=SIGN_MIDDLEWARE,
+100                layer=0,
+101            )
+102        else:
+103            w3.eth.default_account = empty
+104
+105        return w3
+106
+107    @validate_call
+108    def set_default_provider(self, chain_name: ChainName, network_name: str) -> Web3:
+109        self.w3 = self.__configure_w3(
+110            rpc_endpoint=get_default_rpc_endpoint(chain_name, network_name),
+111            account=self.account,
+112        )
+113
+114        return self.w3
+115
+116    @validate_call
+117    def set_custom_provider(self, rpc_endpoint: RpcEndpoint) -> Web3:
+118        self.w3 = self.__configure_w3(rpc_endpoint=rpc_endpoint, account=self.account)
+119
+120        return self.w3
+121
+122    @validate_call
+123    def set_account(self, private_key: Bytes32 | None) -> LocalAccount | None:
+124        if private_key is None:
+125            self.account = None
+126            self.w3 = self.__configure_w3(
+127                rpc_endpoint=self.rpc_endpoint,
+128            )
+129        else:
+130            self.account = Account.from_key(private_key)
+131            self.w3 = self.__configure_w3(
+132                rpc_endpoint=self.rpc_endpoint, account=self.account
+133            )
+134
+135        return self.account
+136
+137    def get_account_address(self) -> ChecksumAddress:
+138        if self.account is None:
+139            raise AccountNotInitialized()
+140
+141        return self.account.address
 
@@ -310,51 +309,51 @@

-
28    @validate_call
-29    def __init__(
-30        self,
-31        chain_name: ChainName | None = None,
-32        network_name: str | None = None,
-33        rpc_endpoint: RpcEndpoint | None = None,
-34        private_key: Bytes32 | None = None,
-35    ) -> None:
-36        """Constructor that initializes SDK client.
-37
-38        Notes:
-39            - Either `chain_name` & `network_name` parameters\
-40              or `rpc_endpoint` parameter are required.
-41            - This constructor prioritizes `rpc_endpoint` parameter over\
-42            `chain_name` & `network_name` parameters when configuring `rpc_endpoint`.
-43
-44        Args:
-45            chain_name (str, optional): Chain name
-46            network_name (str, optional): Network name
-47            rpc_endpoint (RpcEndpoint, optional): RPC endpoint
-48            private_key (Bytes32, optional): private key of EOA
-49
-50        Raises:
-51            InvalidBytes32: If the supplied `private_key` is not in a valid form
-52            InvalidRpcEndpoint: If the supplied `rpc_endpoint` is not in a valid form
-53            NetworkNotSupported: If the specified network is not supported by the SDK
-54            ValidationError: If pydantic validation fails
-55        """
-56        rpc_endpoint = (
-57            rpc_endpoint
-58            if rpc_endpoint is not None
-59            else get_default_rpc_endpoint(chain_name, network_name)
-60        )
-61        account = Account.from_key(private_key) if private_key is not None else None
-62        w3 = self.__configure_w3(
-63            rpc_endpoint=rpc_endpoint,
-64            account=account,
-65        )
-66
-67        self.w3 = w3
-68        """Web3: Configured web3 instance"""
-69        self.rpc_endpoint = rpc_endpoint
-70        """str: RPC endpoint"""
-71        self.account = account
-72        """LocalAccount | None: Account instance"""
+            
29    @validate_call
+30    def __init__(
+31        self,
+32        chain_name: ChainName | None = None,
+33        network_name: str | None = None,
+34        rpc_endpoint: RpcEndpoint | None = None,
+35        private_key: Bytes32 | None = None,
+36    ) -> None:
+37        """Constructor that initializes SDK client.
+38
+39        Notes:
+40            - Either `chain_name` & `network_name` parameters\
+41              or `rpc_endpoint` parameter are required.
+42            - This constructor prioritizes `rpc_endpoint` parameter over\
+43            `chain_name` & `network_name` parameters when configuring `rpc_endpoint`.
+44
+45        Args:
+46            chain_name (str, optional): Chain name
+47            network_name (str, optional): Network name
+48            rpc_endpoint (RpcEndpoint, optional): RPC endpoint
+49            private_key (Bytes32, optional): private key of EOA
+50
+51        Raises:
+52            InvalidBytes32: If the supplied `private_key` is not in a valid form
+53            InvalidRpcEndpoint: If the supplied `rpc_endpoint` is not in a valid form
+54            NetworkNotSupported: If the specified network is not supported by the SDK
+55            ValidationError: If pydantic validation fails
+56        """
+57        rpc_endpoint = (
+58            rpc_endpoint
+59            if rpc_endpoint is not None
+60            else get_default_rpc_endpoint(chain_name, network_name)
+61        )
+62        account = Account.from_key(private_key) if private_key is not None else None
+63        w3 = self.__configure_w3(
+64            rpc_endpoint=rpc_endpoint,
+65            account=account,
+66        )
+67
+68        self.w3 = w3
+69        """Web3: Configured web3 instance"""
+70        self.rpc_endpoint = rpc_endpoint
+71        """str: RPC endpoint"""
+72        self.account = account
+73        """LocalAccount | None: Account instance"""
 
@@ -441,14 +440,14 @@
Raises:
-
106    @validate_call
-107    def set_default_provider(self, chain_name: ChainName, network_name: str) -> Web3:
-108        self.w3 = self.__configure_w3(
-109            rpc_endpoint=get_default_rpc_endpoint(chain_name, network_name),
-110            account=self.account,
-111        )
-112
-113        return self.w3
+            
107    @validate_call
+108    def set_default_provider(self, chain_name: ChainName, network_name: str) -> Web3:
+109        self.w3 = self.__configure_w3(
+110            rpc_endpoint=get_default_rpc_endpoint(chain_name, network_name),
+111            account=self.account,
+112        )
+113
+114        return self.w3
 
@@ -489,11 +488,11 @@
Raises:
-
115    @validate_call
-116    def set_custom_provider(self, rpc_endpoint: RpcEndpoint) -> Web3:
-117        self.w3 = self.__configure_w3(rpc_endpoint=rpc_endpoint, account=self.account)
-118
-119        return self.w3
+            
116    @validate_call
+117    def set_custom_provider(self, rpc_endpoint: RpcEndpoint) -> Web3:
+118        self.w3 = self.__configure_w3(rpc_endpoint=rpc_endpoint, account=self.account)
+119
+120        return self.w3
 
@@ -532,20 +531,20 @@
Raises:
-
121    @validate_call
-122    def set_account(self, private_key: Bytes32 | None) -> LocalAccount | None:
-123        if private_key is None:
-124            self.account = None
-125            self.w3 = self.__configure_w3(
-126                rpc_endpoint=self.rpc_endpoint,
-127            )
-128        else:
-129            self.account = Account.from_key(private_key)
-130            self.w3 = self.__configure_w3(
-131                rpc_endpoint=self.rpc_endpoint, account=self.account
-132            )
-133
-134        return self.account
+            
122    @validate_call
+123    def set_account(self, private_key: Bytes32 | None) -> LocalAccount | None:
+124        if private_key is None:
+125            self.account = None
+126            self.w3 = self.__configure_w3(
+127                rpc_endpoint=self.rpc_endpoint,
+128            )
+129        else:
+130            self.account = Account.from_key(private_key)
+131            self.w3 = self.__configure_w3(
+132                rpc_endpoint=self.rpc_endpoint, account=self.account
+133            )
+134
+135        return self.account
 
@@ -583,17 +582,17 @@
Raises:
def - get_account_address( self) -> Annotated[str, AfterValidator(func=<function validate_checksum_address at 0x110369da0>)]: + get_account_address( self) -> Annotated[str, AfterValidator(func=<function validate_checksum_address at 0x107b4a8e0>)]:
-
136    def get_account_address(self) -> ChecksumAddress:
-137        if self.account is None:
-138            raise AccountNotInitialized()
-139
-140        return self.account.address
+            
137    def get_account_address(self) -> ChecksumAddress:
+138        if self.account is None:
+139            raise AccountNotInitialized()
+140
+141        return self.account.address
 
@@ -632,10 +631,10 @@
Raises:
35 def __init__( 36 self, 37 client: SdkClient, - 38 contract_version: ContractVersion = "2", + 38 contract_type: ContractType = "jpyc", 39 contract_address: EthChecksumAddress | None = None, 40 ) -> None: - 41 """Constructor that initializes JPYC client. + 41 """Constructor that initializes a JPYC client. 42 43 Notes: 44 - If `client` parameter is configured to use localhost network,\ @@ -646,7 +645,7 @@
Raises:
49 50 Args: 51 client (SdkClient): Configured SDK client - 52 contract_version (ContractVersion): Contract version + 52 contract_type (ContractType): Contract type (`jpyc` or `jpyc_prepaid`) 53 contract_address (EthChecksumAddress, optional): Contract address 54 """ 55 if ( @@ -655,12 +654,12 @@
Raises:
58 ): 59 address = self.__deploy_contract( 60 client=client, - 61 contract_version=contract_version, + 61 contract_type=contract_type, 62 ) 63 contract = self.__get_contract( 64 client=client, 65 contract_address=address, - 66 contract_version=contract_version, + 66 contract_type=contract_type, 67 ) 68 self.__initialize_contract( 69 client=client, @@ -670,12 +669,12 @@
Raises:
73 address = ( 74 contract_address 75 if contract_address is not None - 76 else get_proxy_address(contract_version=contract_version) + 76 else get_proxy_address(contract_type=contract_type) 77 ) 78 contract = self.__get_contract( 79 client=client, 80 contract_address=address, - 81 contract_version=contract_version, + 81 contract_type=contract_type, 82 ) 83 84 self.client = client @@ -690,7 +689,7 @@
Raises:
93 @staticmethod 94 def __deploy_contract( 95 client: SdkClient, - 96 contract_version: ContractVersion = "2", + 96 contract_type: ContractType = "jpyc", 97 ) -> ChecksumAddress: 98 """Deploy contracts to the configured network. 99 @@ -700,12 +699,12 @@
Raises:
103 104 Args: 105 client (SdkClient): Configured SDK client -106 contract_version (ContractVersion): Contract version +106 contract_type (ContractType): Contract type 107 108 Returns: 109 ChecksumAddress: Address of the deployed contracts 110 """ -111 file_path = resolve_artifacts_file_path(contract_version=contract_version) +111 file_path = resolve_artifacts_file_path(contract_type=contract_type) 112 contract = client.w3.eth.contract( 113 abi=get_artifacts(file_path, "abi"), 114 bytecode=get_artifacts(file_path, "bytecode"), @@ -718,14 +717,14 @@
Raises:
121 def __get_contract( 122 client: SdkClient, 123 contract_address: ChecksumAddress, -124 contract_version: ContractVersion = "2", +124 contract_type: ContractType = "jpyc", 125 ) -> Contract: 126 """Get contract instance from the configured network. 127 128 Args: 129 client (SdkClient): Configured SDK client 130 contract_address (ChecksumAddress): Contract address -131 contract_version (ContractVersion): Contract version +131 contract_type (ContractType): Contract type 132 133 Returns: 134 Contract: Address of the deployed contracts @@ -733,356 +732,354 @@
Raises:
136 return client.w3.eth.contract( # type: ignore[call-overload] 137 address=contract_address, 138 abi=get_artifacts( -139 file_path=resolve_artifacts_file_path( -140 contract_version=contract_version -141 ), -142 artifact_type="abi", -143 ), -144 ) -145 -146 @staticmethod -147 def __initialize_contract( -148 client: SdkClient, -149 contract: Contract, -150 ) -> None: -151 """Initialize contract. -152 -153 Args: -154 client (SdkClient): Configured SDK client -155 contract (Contract): Configured contract instance -156 """ -157 owner_address = client.get_account_address() -158 contract.functions.initialize( -159 "JPY Coin", -160 "JPYC", -161 "Yen", -162 18, +139 file_path=resolve_artifacts_file_path(contract_type=contract_type), +140 artifact_type="abi", +141 ), +142 ) +143 +144 @staticmethod +145 def __initialize_contract( +146 client: SdkClient, +147 contract: Contract, +148 ) -> None: +149 """Initialize contract. +150 +151 Args: +152 client (SdkClient): Configured SDK client +153 contract (Contract): Configured contract instance +154 """ +155 owner_address = client.get_account_address() +156 contract.functions.initialize( +157 "JPY Coin", +158 "JPYC", +159 "Yen", +160 18, +161 owner_address, +162 owner_address, 163 owner_address, 164 owner_address, 165 owner_address, -166 owner_address, -167 owner_address, -168 ).transact() -169 -170 def __account_initialized(self) -> None: -171 """Checks if account is initialized. -172 -173 Note: -174 An account must be set to web3 instance to send transactions. -175 -176 Raises: -177 AccountNotInitialized: If account is not initialized -178 """ -179 if SIGN_MIDDLEWARE not in self.client.w3.middleware_onion: -180 raise AccountNotInitialized() -181 -182 @staticmethod -183 def __simulate_transaction( -184 contract_func: ContractFunction, -185 func_args: dict[str, object], -186 ) -> None: -187 """Simulates a transaction locally. -188 -189 Note: -190 This method should be called before sending actual transactions. -191 -192 Args: -193 contract_func (ContractFunction): Contract function -194 func_args (dict[str, object]): Arguments of contract function -195 -196 Raises: -197 TransactionSimulationFailed: If transaction simulation fails -198 """ -199 try: -200 contract_func(**func_args).call() -201 except Exception as e: -202 raise TransactionSimulationFailed(str(e)) -203 -204 @staticmethod -205 def __send_transaction( -206 contract_func: ContractFunction, -207 func_args: dict[str, object], -208 ) -> Any: -209 """Sends a transaction to blockchain. -210 -211 Args: -212 contract_func (ContractFunction): Contract function -213 func_args (dict[str, object]): Arguments of contract function -214 -215 Returns: -216 Any: Response from the contract function -217 -218 Raises: -219 TransactionFailed: If transaction fails -220 """ -221 try: -222 return contract_func(**func_args).transact() -223 except Exception as e: -224 raise TransactionFailed(str(e)) -225 -226 def __transact( -227 self, contract_func: ContractFunction, func_args: dict[str, object] -228 ) -> Any: -229 """Helper method to prepare & send a transaction in one method. -230 -231 Args: -232 contract_func (ContractFunction): Contract function -233 func_args (dict[str, object]): Arguments of contract function -234 -235 Returns: -236 Any: Response from the contract function -237 -238 Raises: -239 AccountNotInitialized: If account is not initialized -240 TransactionSimulationFailed: If transaction simulation fails -241 TransactionFailed: If transaction fails -242 """ -243 -244 self.__account_initialized() -245 self.__simulate_transaction( -246 contract_func, -247 func_args, -248 ) -249 return self.__send_transaction( -250 contract_func, -251 func_args, -252 ) -253 +166 ).transact() +167 +168 def __account_initialized(self) -> None: +169 """Checks if account is initialized. +170 +171 Note: +172 An account must be set to web3 instance to send transactions. +173 +174 Raises: +175 AccountNotInitialized: If account is not initialized +176 """ +177 if SIGN_MIDDLEWARE not in self.client.w3.middleware_onion: +178 raise AccountNotInitialized() +179 +180 @staticmethod +181 def __simulate_transaction( +182 contract_func: ContractFunction, +183 func_args: dict[str, object], +184 ) -> None: +185 """Simulates a transaction locally. +186 +187 Note: +188 This method should be called before sending actual transactions. +189 +190 Args: +191 contract_func (ContractFunction): Contract function +192 func_args (dict[str, object]): Arguments of contract function +193 +194 Raises: +195 TransactionSimulationFailed: If transaction simulation fails +196 """ +197 try: +198 contract_func(**func_args).call() +199 except Exception as e: +200 raise TransactionSimulationFailed(str(e)) +201 +202 @staticmethod +203 def __send_transaction( +204 contract_func: ContractFunction, +205 func_args: dict[str, object], +206 ) -> Any: +207 """Sends a transaction to blockchain. +208 +209 Args: +210 contract_func (ContractFunction): Contract function +211 func_args (dict[str, object]): Arguments of contract function +212 +213 Returns: +214 Any: Response from the contract function +215 +216 Raises: +217 TransactionFailed: If transaction fails +218 """ +219 try: +220 return contract_func(**func_args).transact() +221 except Exception as e: +222 raise TransactionFailed(str(e)) +223 +224 def __transact( +225 self, contract_func: ContractFunction, func_args: dict[str, object] +226 ) -> Any: +227 """Helper method to prepare & send a transaction in one method. +228 +229 Args: +230 contract_func (ContractFunction): Contract function +231 func_args (dict[str, object]): Arguments of contract function +232 +233 Returns: +234 Any: Response from the contract function +235 +236 Raises: +237 AccountNotInitialized: If account is not initialized +238 TransactionSimulationFailed: If transaction simulation fails +239 TransactionFailed: If transaction fails +240 """ +241 +242 self.__account_initialized() +243 self.__simulate_transaction( +244 contract_func, +245 func_args, +246 ) +247 return self.__send_transaction( +248 contract_func, +249 func_args, +250 ) +251 +252 ################## +253 # View functions # 254 ################## -255 # View functions # -256 ################## -257 -258 @validate_call -259 def is_minter(self, account: ChecksumAddress) -> bool: -260 return self.contract.functions.isMinter(account).call() -261 -262 @restore_decimals -263 @validate_call -264 def minter_allowance(self, minter: ChecksumAddress) -> Uint256: -265 return self.contract.functions.minterAllowance(minter).call() -266 -267 @restore_decimals -268 def total_supply(self) -> Uint256: -269 return self.contract.functions.totalSupply().call() -270 -271 @restore_decimals -272 @validate_call -273 def balance_of(self, account: ChecksumAddress) -> Uint256: -274 return self.contract.functions.balanceOf(account).call() -275 -276 @restore_decimals -277 @validate_call -278 def allowance(self, owner: ChecksumAddress, spender: ChecksumAddress) -> Uint256: -279 return self.contract.functions.allowance(owner, spender).call() -280 -281 @validate_call -282 def nonces(self, owner: ChecksumAddress) -> Uint256: -283 return self.contract.functions.nonces(owner).call() -284 +255 +256 @validate_call +257 def is_minter(self, account: ChecksumAddress) -> bool: +258 return self.contract.functions.isMinter(account).call() +259 +260 @restore_decimals +261 @validate_call +262 def minter_allowance(self, minter: ChecksumAddress) -> Uint256: +263 return self.contract.functions.minterAllowance(minter).call() +264 +265 @restore_decimals +266 def total_supply(self) -> Uint256: +267 return self.contract.functions.totalSupply().call() +268 +269 @restore_decimals +270 @validate_call +271 def balance_of(self, account: ChecksumAddress) -> Uint256: +272 return self.contract.functions.balanceOf(account).call() +273 +274 @restore_decimals +275 @validate_call +276 def allowance(self, owner: ChecksumAddress, spender: ChecksumAddress) -> Uint256: +277 return self.contract.functions.allowance(owner, spender).call() +278 +279 @validate_call +280 def nonces(self, owner: ChecksumAddress) -> Uint256: +281 return self.contract.functions.nonces(owner).call() +282 +283 ###################### +284 # Mutation functions # 285 ###################### -286 # Mutation functions # -287 ###################### -288 -289 @validate_call -290 def configure_minter( -291 self, minter: ChecksumAddress, minter_allowed_amount: Uint256 -292 ) -> Bytes32: -293 tx_args: TransactionArgs = { -294 "contract_func": self.contract.functions.configureMinter, -295 "func_args": { -296 "minter": minter, -297 "minterAllowedAmount": remove_decimals(minter_allowed_amount), -298 }, -299 } +286 +287 @validate_call +288 def configure_minter( +289 self, minter: ChecksumAddress, minter_allowed_amount: Uint256 +290 ) -> Bytes32: +291 tx_args: TransactionArgs = { +292 "contract_func": self.contract.functions.configureMinter, +293 "func_args": { +294 "minter": minter, +295 "minterAllowedAmount": remove_decimals(minter_allowed_amount), +296 }, +297 } +298 +299 return self.__transact(**tx_args) 300 -301 return self.__transact(**tx_args) -302 -303 @validate_call -304 def mint(self, to: ChecksumAddress, amount: Uint256) -> Bytes32: -305 tx_args: TransactionArgs = { -306 "contract_func": self.contract.functions.mint, -307 "func_args": { -308 "_to": to, -309 "_amount": remove_decimals(amount), -310 }, -311 } +301 @validate_call +302 def mint(self, to: ChecksumAddress, amount: Uint256) -> Bytes32: +303 tx_args: TransactionArgs = { +304 "contract_func": self.contract.functions.mint, +305 "func_args": { +306 "_to": to, +307 "_amount": remove_decimals(amount), +308 }, +309 } +310 +311 return self.__transact(**tx_args) 312 -313 return self.__transact(**tx_args) -314 -315 @validate_call -316 def transfer(self, to: ChecksumAddress, value: Uint256) -> Bytes32: -317 tx_args: TransactionArgs = { -318 "contract_func": self.contract.functions.transfer, -319 "func_args": { -320 "to": to, -321 "value": remove_decimals(value), -322 }, -323 } +313 @validate_call +314 def transfer(self, to: ChecksumAddress, value: Uint256) -> Bytes32: +315 tx_args: TransactionArgs = { +316 "contract_func": self.contract.functions.transfer, +317 "func_args": { +318 "to": to, +319 "value": remove_decimals(value), +320 }, +321 } +322 +323 return self.__transact(**tx_args) 324 -325 return self.__transact(**tx_args) -326 -327 @validate_call -328 def transfer_from( -329 self, from_: ChecksumAddress, to: ChecksumAddress, value: Uint256 -330 ) -> Bytes32: -331 tx_args: TransactionArgs = { -332 "contract_func": self.contract.functions.transferFrom, -333 "func_args": { -334 "from": from_, -335 "to": to, -336 "value": remove_decimals(value), -337 }, -338 } +325 @validate_call +326 def transfer_from( +327 self, from_: ChecksumAddress, to: ChecksumAddress, value: Uint256 +328 ) -> Bytes32: +329 tx_args: TransactionArgs = { +330 "contract_func": self.contract.functions.transferFrom, +331 "func_args": { +332 "from": from_, +333 "to": to, +334 "value": remove_decimals(value), +335 }, +336 } +337 +338 return self.__transact(**tx_args) 339 -340 return self.__transact(**tx_args) -341 -342 @validate_call -343 def transfer_with_authorization( -344 self, -345 from_: ChecksumAddress, -346 to: ChecksumAddress, -347 value: Uint256, -348 valid_after: Uint256, -349 valid_before: Uint256, -350 nonce: Bytes32, -351 v: Uint8, -352 r: Bytes32, -353 s: Bytes32, -354 ) -> Bytes32: -355 tx_args: TransactionArgs = { -356 "contract_func": self.contract.functions.transferWithAuthorization, -357 "func_args": { -358 "from": from_, -359 "to": to, -360 "value": remove_decimals(value), -361 "validAfter": valid_after, -362 "validBefore": valid_before, -363 "nonce": nonce, -364 "v": v, -365 "r": r, -366 "s": s, -367 }, -368 } +340 @validate_call +341 def transfer_with_authorization( +342 self, +343 from_: ChecksumAddress, +344 to: ChecksumAddress, +345 value: Uint256, +346 valid_after: Uint256, +347 valid_before: Uint256, +348 nonce: Bytes32, +349 v: Uint8, +350 r: Bytes32, +351 s: Bytes32, +352 ) -> Bytes32: +353 tx_args: TransactionArgs = { +354 "contract_func": self.contract.functions.transferWithAuthorization, +355 "func_args": { +356 "from": from_, +357 "to": to, +358 "value": remove_decimals(value), +359 "validAfter": valid_after, +360 "validBefore": valid_before, +361 "nonce": nonce, +362 "v": v, +363 "r": r, +364 "s": s, +365 }, +366 } +367 +368 return self.__transact(**tx_args) 369 -370 return self.__transact(**tx_args) -371 -372 @validate_call -373 def receive_with_authorization( -374 self, -375 from_: ChecksumAddress, -376 to: ChecksumAddress, -377 value: Uint256, -378 valid_after: Uint256, -379 valid_before: Uint256, -380 nonce: Bytes32, -381 v: Uint8, -382 r: Bytes32, -383 s: Bytes32, -384 ) -> Bytes32: -385 tx_args: TransactionArgs = { -386 "contract_func": self.contract.functions.receiveWithAuthorization, -387 "func_args": { -388 "from": from_, -389 "to": to, -390 "value": remove_decimals(value), -391 "validAfter": valid_after, -392 "validBefore": valid_before, -393 "nonce": nonce, -394 "v": v, -395 "r": r, -396 "s": s, -397 }, -398 } +370 @validate_call +371 def receive_with_authorization( +372 self, +373 from_: ChecksumAddress, +374 to: ChecksumAddress, +375 value: Uint256, +376 valid_after: Uint256, +377 valid_before: Uint256, +378 nonce: Bytes32, +379 v: Uint8, +380 r: Bytes32, +381 s: Bytes32, +382 ) -> Bytes32: +383 tx_args: TransactionArgs = { +384 "contract_func": self.contract.functions.receiveWithAuthorization, +385 "func_args": { +386 "from": from_, +387 "to": to, +388 "value": remove_decimals(value), +389 "validAfter": valid_after, +390 "validBefore": valid_before, +391 "nonce": nonce, +392 "v": v, +393 "r": r, +394 "s": s, +395 }, +396 } +397 +398 return self.__transact(**tx_args) 399 -400 return self.__transact(**tx_args) -401 -402 @validate_call -403 def cancel_authorization( -404 self, -405 authorizer: ChecksumAddress, -406 nonce: Bytes32, -407 v: Uint8, -408 r: Bytes32, -409 s: Bytes32, -410 ) -> Bytes32: -411 tx_args: TransactionArgs = { -412 "contract_func": self.contract.functions.cancelAuthorization, -413 "func_args": { -414 "authorizer": authorizer, -415 "nonce": nonce, -416 "v": v, -417 "r": r, -418 "s": s, -419 }, -420 } +400 @validate_call +401 def cancel_authorization( +402 self, +403 authorizer: ChecksumAddress, +404 nonce: Bytes32, +405 v: Uint8, +406 r: Bytes32, +407 s: Bytes32, +408 ) -> Bytes32: +409 tx_args: TransactionArgs = { +410 "contract_func": self.contract.functions.cancelAuthorization, +411 "func_args": { +412 "authorizer": authorizer, +413 "nonce": nonce, +414 "v": v, +415 "r": r, +416 "s": s, +417 }, +418 } +419 +420 return self.__transact(**tx_args) 421 -422 return self.__transact(**tx_args) -423 -424 @validate_call -425 def approve(self, spender: ChecksumAddress, value: Uint256) -> Bytes32: -426 tx_args: TransactionArgs = { -427 "contract_func": self.contract.functions.approve, -428 "func_args": { -429 "spender": spender, -430 "value": remove_decimals(value), -431 }, -432 } +422 @validate_call +423 def approve(self, spender: ChecksumAddress, value: Uint256) -> Bytes32: +424 tx_args: TransactionArgs = { +425 "contract_func": self.contract.functions.approve, +426 "func_args": { +427 "spender": spender, +428 "value": remove_decimals(value), +429 }, +430 } +431 +432 return self.__transact(**tx_args) 433 -434 return self.__transact(**tx_args) -435 -436 @validate_call -437 def increase_allowance( -438 self, spender: ChecksumAddress, increment: Uint256 -439 ) -> Bytes32: -440 tx_args: TransactionArgs = { -441 "contract_func": self.contract.functions.increaseAllowance, -442 "func_args": { -443 "spender": spender, -444 "increment": remove_decimals(increment), -445 }, -446 } +434 @validate_call +435 def increase_allowance( +436 self, spender: ChecksumAddress, increment: Uint256 +437 ) -> Bytes32: +438 tx_args: TransactionArgs = { +439 "contract_func": self.contract.functions.increaseAllowance, +440 "func_args": { +441 "spender": spender, +442 "increment": remove_decimals(increment), +443 }, +444 } +445 +446 return self.__transact(**tx_args) 447 -448 return self.__transact(**tx_args) -449 -450 @validate_call -451 def decrease_allowance( -452 self, spender: ChecksumAddress, decrement: Uint256 -453 ) -> Bytes32: -454 tx_args: TransactionArgs = { -455 "contract_func": self.contract.functions.decreaseAllowance, -456 "func_args": { -457 "spender": spender, -458 "decrement": remove_decimals(decrement), -459 }, -460 } +448 @validate_call +449 def decrease_allowance( +450 self, spender: ChecksumAddress, decrement: Uint256 +451 ) -> Bytes32: +452 tx_args: TransactionArgs = { +453 "contract_func": self.contract.functions.decreaseAllowance, +454 "func_args": { +455 "spender": spender, +456 "decrement": remove_decimals(decrement), +457 }, +458 } +459 +460 return self.__transact(**tx_args) 461 -462 return self.__transact(**tx_args) -463 -464 @validate_call -465 def permit( -466 self, -467 owner: ChecksumAddress, -468 spender: ChecksumAddress, -469 value: Uint256, -470 deadline: Uint256, -471 v: Uint8, -472 r: Bytes32, -473 s: Bytes32, -474 ) -> Bytes32: -475 tx_args: TransactionArgs = { -476 "contract_func": self.contract.functions.permit, -477 "func_args": { -478 "owner": owner, -479 "spender": spender, -480 "value": remove_decimals(value), -481 "deadline": deadline, -482 "v": v, -483 "r": r, -484 "s": s, -485 }, -486 } -487 -488 return self.__transact(**tx_args) +462 @validate_call +463 def permit( +464 self, +465 owner: ChecksumAddress, +466 spender: ChecksumAddress, +467 value: Uint256, +468 deadline: Uint256, +469 v: Uint8, +470 r: Bytes32, +471 s: Bytes32, +472 ) -> Bytes32: +473 tx_args: TransactionArgs = { +474 "contract_func": self.contract.functions.permit, +475 "func_args": { +476 "owner": owner, +477 "spender": spender, +478 "value": remove_decimals(value), +479 "deadline": deadline, +480 "v": v, +481 "r": r, +482 "s": s, +483 }, +484 } +485 +486 return self.__transact(**tx_args)
@@ -1094,7 +1091,7 @@
Raises:
- JPYC( client: SdkClient, contract_version: ContractVersion = '2', contract_address: Optional[eth_typing.evm.ChecksumAddress] = None) + JPYC( client: SdkClient, contract_type: ContractType = 'jpyc', contract_address: Optional[eth_typing.evm.ChecksumAddress] = None) @@ -1103,10 +1100,10 @@
Raises:
35    def __init__(
 36        self,
 37        client: SdkClient,
-38        contract_version: ContractVersion = "2",
+38        contract_type: ContractType = "jpyc",
 39        contract_address: EthChecksumAddress | None = None,
 40    ) -> None:
-41        """Constructor that initializes JPYC client.
+41        """Constructor that initializes a JPYC client.
 42
 43        Notes:
 44            - If `client` parameter is configured to use localhost network,\
@@ -1117,7 +1114,7 @@ 
Raises:
49 50 Args: 51 client (SdkClient): Configured SDK client -52 contract_version (ContractVersion): Contract version +52 contract_type (ContractType): Contract type (`jpyc` or `jpyc_prepaid`) 53 contract_address (EthChecksumAddress, optional): Contract address 54 """ 55 if ( @@ -1126,12 +1123,12 @@
Raises:
58 ): 59 address = self.__deploy_contract( 60 client=client, -61 contract_version=contract_version, +61 contract_type=contract_type, 62 ) 63 contract = self.__get_contract( 64 client=client, 65 contract_address=address, -66 contract_version=contract_version, +66 contract_type=contract_type, 67 ) 68 self.__initialize_contract( 69 client=client, @@ -1141,12 +1138,12 @@
Raises:
73 address = ( 74 contract_address 75 if contract_address is not None -76 else get_proxy_address(contract_version=contract_version) +76 else get_proxy_address(contract_type=contract_type) 77 ) 78 contract = self.__get_contract( 79 client=client, 80 contract_address=address, -81 contract_version=contract_version, +81 contract_type=contract_type, 82 ) 83 84 self.client = client @@ -1156,7 +1153,7 @@
Raises:
-

Constructor that initializes JPYC client.

+

Constructor that initializes a JPYC client.

Notes:
@@ -1171,7 +1168,7 @@
Arguments:
  • client (SdkClient): Configured SDK client
  • -
  • contract_version (ContractVersion): Contract version
  • +
  • contract_type (ContractType): Contract type (jpyc or jpyc_prepaid)
  • contract_address (EthChecksumAddress, optional): Contract address
@@ -1216,9 +1213,9 @@
Arguments:
-
258    @validate_call
-259    def is_minter(self, account: ChecksumAddress) -> bool:
-260        return self.contract.functions.isMinter(account).call()
+            
256    @validate_call
+257    def is_minter(self, account: ChecksumAddress) -> bool:
+258        return self.contract.functions.isMinter(account).call()
 
@@ -1339,15 +1336,15 @@
Raises:
@validate_call
def - nonces( self, owner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x110369f80>)]: + nonces( self, owner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x107b4ac00>)]:
-
281    @validate_call
-282    def nonces(self, owner: ChecksumAddress) -> Uint256:
-283        return self.contract.functions.nonces(owner).call()
+            
279    @validate_call
+280    def nonces(self, owner: ChecksumAddress) -> Uint256:
+281        return self.contract.functions.nonces(owner).call()
 
@@ -1380,25 +1377,25 @@
Raises:
@validate_call
def - configure_minter( self, minter: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], minter_allowed_amount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]: + configure_minter( self, minter: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], minter_allowed_amount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:
-
289    @validate_call
-290    def configure_minter(
-291        self, minter: ChecksumAddress, minter_allowed_amount: Uint256
-292    ) -> Bytes32:
-293        tx_args: TransactionArgs = {
-294            "contract_func": self.contract.functions.configureMinter,
-295            "func_args": {
-296                "minter": minter,
-297                "minterAllowedAmount": remove_decimals(minter_allowed_amount),
-298            },
-299        }
-300
-301        return self.__transact(**tx_args)
+            
287    @validate_call
+288    def configure_minter(
+289        self, minter: ChecksumAddress, minter_allowed_amount: Uint256
+290    ) -> Bytes32:
+291        tx_args: TransactionArgs = {
+292            "contract_func": self.contract.functions.configureMinter,
+293            "func_args": {
+294                "minter": minter,
+295                "minterAllowedAmount": remove_decimals(minter_allowed_amount),
+296            },
+297        }
+298
+299        return self.__transact(**tx_args)
 
@@ -1436,23 +1433,23 @@
Raises:
@validate_call
def - mint( self, to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], amount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]: + mint( self, to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], amount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:
-
303    @validate_call
-304    def mint(self, to: ChecksumAddress, amount: Uint256) -> Bytes32:
-305        tx_args: TransactionArgs = {
-306            "contract_func": self.contract.functions.mint,
-307            "func_args": {
-308                "_to": to,
-309                "_amount": remove_decimals(amount),
-310            },
-311        }
-312
-313        return self.__transact(**tx_args)
+            
301    @validate_call
+302    def mint(self, to: ChecksumAddress, amount: Uint256) -> Bytes32:
+303        tx_args: TransactionArgs = {
+304            "contract_func": self.contract.functions.mint,
+305            "func_args": {
+306                "_to": to,
+307                "_amount": remove_decimals(amount),
+308            },
+309        }
+310
+311        return self.__transact(**tx_args)
 
@@ -1490,23 +1487,23 @@
Raises:
@validate_call
def - transfer( self, to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]: + transfer( self, to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:
-
315    @validate_call
-316    def transfer(self, to: ChecksumAddress, value: Uint256) -> Bytes32:
-317        tx_args: TransactionArgs = {
-318            "contract_func": self.contract.functions.transfer,
-319            "func_args": {
-320                "to": to,
-321                "value": remove_decimals(value),
-322            },
-323        }
-324
-325        return self.__transact(**tx_args)
+            
313    @validate_call
+314    def transfer(self, to: ChecksumAddress, value: Uint256) -> Bytes32:
+315        tx_args: TransactionArgs = {
+316            "contract_func": self.contract.functions.transfer,
+317            "func_args": {
+318                "to": to,
+319                "value": remove_decimals(value),
+320            },
+321        }
+322
+323        return self.__transact(**tx_args)
 
@@ -1544,26 +1541,26 @@
Raises:
@validate_call
def - transfer_from( self, from_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]: + transfer_from( self, from_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:
-
327    @validate_call
-328    def transfer_from(
-329        self, from_: ChecksumAddress, to: ChecksumAddress, value: Uint256
-330    ) -> Bytes32:
-331        tx_args: TransactionArgs = {
-332            "contract_func": self.contract.functions.transferFrom,
-333            "func_args": {
-334                "from": from_,
-335                "to": to,
-336                "value": remove_decimals(value),
-337            },
-338        }
-339
-340        return self.__transact(**tx_args)
+            
325    @validate_call
+326    def transfer_from(
+327        self, from_: ChecksumAddress, to: ChecksumAddress, value: Uint256
+328    ) -> Bytes32:
+329        tx_args: TransactionArgs = {
+330            "contract_func": self.contract.functions.transferFrom,
+331            "func_args": {
+332                "from": from_,
+333                "to": to,
+334                "value": remove_decimals(value),
+335            },
+336        }
+337
+338        return self.__transact(**tx_args)
 
@@ -1602,41 +1599,41 @@
Raises:
@validate_call
def - transfer_with_authorization( self, from_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)], nonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]: + transfer_with_authorization( self, from_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)], nonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:
-
342    @validate_call
-343    def transfer_with_authorization(
-344        self,
-345        from_: ChecksumAddress,
-346        to: ChecksumAddress,
-347        value: Uint256,
-348        valid_after: Uint256,
-349        valid_before: Uint256,
-350        nonce: Bytes32,
-351        v: Uint8,
-352        r: Bytes32,
-353        s: Bytes32,
-354    ) -> Bytes32:
-355        tx_args: TransactionArgs = {
-356            "contract_func": self.contract.functions.transferWithAuthorization,
-357            "func_args": {
-358                "from": from_,
-359                "to": to,
-360                "value": remove_decimals(value),
-361                "validAfter": valid_after,
-362                "validBefore": valid_before,
-363                "nonce": nonce,
-364                "v": v,
-365                "r": r,
-366                "s": s,
-367            },
-368        }
-369
-370        return self.__transact(**tx_args)
+            
340    @validate_call
+341    def transfer_with_authorization(
+342        self,
+343        from_: ChecksumAddress,
+344        to: ChecksumAddress,
+345        value: Uint256,
+346        valid_after: Uint256,
+347        valid_before: Uint256,
+348        nonce: Bytes32,
+349        v: Uint8,
+350        r: Bytes32,
+351        s: Bytes32,
+352    ) -> Bytes32:
+353        tx_args: TransactionArgs = {
+354            "contract_func": self.contract.functions.transferWithAuthorization,
+355            "func_args": {
+356                "from": from_,
+357                "to": to,
+358                "value": remove_decimals(value),
+359                "validAfter": valid_after,
+360                "validBefore": valid_before,
+361                "nonce": nonce,
+362                "v": v,
+363                "r": r,
+364                "s": s,
+365            },
+366        }
+367
+368        return self.__transact(**tx_args)
 
@@ -1683,41 +1680,41 @@
Raises:
@validate_call
def - receive_with_authorization( self, from_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)], nonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]: + receive_with_authorization( self, from_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)], nonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:
-
372    @validate_call
-373    def receive_with_authorization(
-374        self,
-375        from_: ChecksumAddress,
-376        to: ChecksumAddress,
-377        value: Uint256,
-378        valid_after: Uint256,
-379        valid_before: Uint256,
-380        nonce: Bytes32,
-381        v: Uint8,
-382        r: Bytes32,
-383        s: Bytes32,
-384    ) -> Bytes32:
-385        tx_args: TransactionArgs = {
-386            "contract_func": self.contract.functions.receiveWithAuthorization,
-387            "func_args": {
-388                "from": from_,
-389                "to": to,
-390                "value": remove_decimals(value),
-391                "validAfter": valid_after,
-392                "validBefore": valid_before,
-393                "nonce": nonce,
-394                "v": v,
-395                "r": r,
-396                "s": s,
-397            },
-398        }
-399
-400        return self.__transact(**tx_args)
+            
370    @validate_call
+371    def receive_with_authorization(
+372        self,
+373        from_: ChecksumAddress,
+374        to: ChecksumAddress,
+375        value: Uint256,
+376        valid_after: Uint256,
+377        valid_before: Uint256,
+378        nonce: Bytes32,
+379        v: Uint8,
+380        r: Bytes32,
+381        s: Bytes32,
+382    ) -> Bytes32:
+383        tx_args: TransactionArgs = {
+384            "contract_func": self.contract.functions.receiveWithAuthorization,
+385            "func_args": {
+386                "from": from_,
+387                "to": to,
+388                "value": remove_decimals(value),
+389                "validAfter": valid_after,
+390                "validBefore": valid_before,
+391                "nonce": nonce,
+392                "v": v,
+393                "r": r,
+394                "s": s,
+395            },
+396        }
+397
+398        return self.__transact(**tx_args)
 
@@ -1764,33 +1761,33 @@
Raises:
@validate_call
def - cancel_authorization( self, authorizer: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], nonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]: + cancel_authorization( self, authorizer: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], nonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:
-
402    @validate_call
-403    def cancel_authorization(
-404        self,
-405        authorizer: ChecksumAddress,
-406        nonce: Bytes32,
-407        v: Uint8,
-408        r: Bytes32,
-409        s: Bytes32,
-410    ) -> Bytes32:
-411        tx_args: TransactionArgs = {
-412            "contract_func": self.contract.functions.cancelAuthorization,
-413            "func_args": {
-414                "authorizer": authorizer,
-415                "nonce": nonce,
-416                "v": v,
-417                "r": r,
-418                "s": s,
-419            },
-420        }
-421
-422        return self.__transact(**tx_args)
+            
400    @validate_call
+401    def cancel_authorization(
+402        self,
+403        authorizer: ChecksumAddress,
+404        nonce: Bytes32,
+405        v: Uint8,
+406        r: Bytes32,
+407        s: Bytes32,
+408    ) -> Bytes32:
+409        tx_args: TransactionArgs = {
+410            "contract_func": self.contract.functions.cancelAuthorization,
+411            "func_args": {
+412                "authorizer": authorizer,
+413                "nonce": nonce,
+414                "v": v,
+415                "r": r,
+416                "s": s,
+417            },
+418        }
+419
+420        return self.__transact(**tx_args)
 
@@ -1832,23 +1829,23 @@
Raises:
@validate_call
def - approve( self, spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]: + approve( self, spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:
-
424    @validate_call
-425    def approve(self, spender: ChecksumAddress, value: Uint256) -> Bytes32:
-426        tx_args: TransactionArgs = {
-427            "contract_func": self.contract.functions.approve,
-428            "func_args": {
-429                "spender": spender,
-430                "value": remove_decimals(value),
-431            },
-432        }
-433
-434        return self.__transact(**tx_args)
+            
422    @validate_call
+423    def approve(self, spender: ChecksumAddress, value: Uint256) -> Bytes32:
+424        tx_args: TransactionArgs = {
+425            "contract_func": self.contract.functions.approve,
+426            "func_args": {
+427                "spender": spender,
+428                "value": remove_decimals(value),
+429            },
+430        }
+431
+432        return self.__transact(**tx_args)
 
@@ -1886,25 +1883,25 @@
Raises:
@validate_call
def - increase_allowance( self, spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], increment: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]: + increase_allowance( self, spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], increment: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:
-
436    @validate_call
-437    def increase_allowance(
-438        self, spender: ChecksumAddress, increment: Uint256
-439    ) -> Bytes32:
-440        tx_args: TransactionArgs = {
-441            "contract_func": self.contract.functions.increaseAllowance,
-442            "func_args": {
-443                "spender": spender,
-444                "increment": remove_decimals(increment),
-445            },
-446        }
-447
-448        return self.__transact(**tx_args)
+            
434    @validate_call
+435    def increase_allowance(
+436        self, spender: ChecksumAddress, increment: Uint256
+437    ) -> Bytes32:
+438        tx_args: TransactionArgs = {
+439            "contract_func": self.contract.functions.increaseAllowance,
+440            "func_args": {
+441                "spender": spender,
+442                "increment": remove_decimals(increment),
+443            },
+444        }
+445
+446        return self.__transact(**tx_args)
 
@@ -1942,25 +1939,25 @@
Raises:
@validate_call
def - decrease_allowance( self, spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], decrement: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]: + decrease_allowance( self, spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], decrement: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:
-
450    @validate_call
-451    def decrease_allowance(
-452        self, spender: ChecksumAddress, decrement: Uint256
-453    ) -> Bytes32:
-454        tx_args: TransactionArgs = {
-455            "contract_func": self.contract.functions.decreaseAllowance,
-456            "func_args": {
-457                "spender": spender,
-458                "decrement": remove_decimals(decrement),
-459            },
-460        }
-461
-462        return self.__transact(**tx_args)
+            
448    @validate_call
+449    def decrease_allowance(
+450        self, spender: ChecksumAddress, decrement: Uint256
+451    ) -> Bytes32:
+452        tx_args: TransactionArgs = {
+453            "contract_func": self.contract.functions.decreaseAllowance,
+454            "func_args": {
+455                "spender": spender,
+456                "decrement": remove_decimals(decrement),
+457            },
+458        }
+459
+460        return self.__transact(**tx_args)
 
@@ -1998,37 +1995,37 @@
Raises:
@validate_call
def - permit( self, owner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)], deadline: Annotated[int, AfterValidator(func=<function validate_uint256>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]: + permit( self, owner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)], deadline: Annotated[int, AfterValidator(func=<function validate_uint256>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:
-
464    @validate_call
-465    def permit(
-466        self,
-467        owner: ChecksumAddress,
-468        spender: ChecksumAddress,
-469        value: Uint256,
-470        deadline: Uint256,
-471        v: Uint8,
-472        r: Bytes32,
-473        s: Bytes32,
-474    ) -> Bytes32:
-475        tx_args: TransactionArgs = {
-476            "contract_func": self.contract.functions.permit,
-477            "func_args": {
-478                "owner": owner,
-479                "spender": spender,
-480                "value": remove_decimals(value),
-481                "deadline": deadline,
-482                "v": v,
-483                "r": r,
-484                "s": s,
-485            },
-486        }
-487
-488        return self.__transact(**tx_args)
+            
462    @validate_call
+463    def permit(
+464        self,
+465        owner: ChecksumAddress,
+466        spender: ChecksumAddress,
+467        value: Uint256,
+468        deadline: Uint256,
+469        v: Uint8,
+470        r: Bytes32,
+471        s: Bytes32,
+472    ) -> Bytes32:
+473        tx_args: TransactionArgs = {
+474            "contract_func": self.contract.functions.permit,
+475            "func_args": {
+476                "owner": owner,
+477                "spender": spender,
+478                "value": remove_decimals(value),
+479                "deadline": deadline,
+480                "v": v,
+481                "r": r,
+482                "s": s,
+483            },
+484        }
+485
+486        return self.__transact(**tx_args)
 
diff --git a/docs/core/jpyc_core_sdk/utils.html b/docs/core/jpyc_core_sdk/utils.html index 65f1d08..876b2c4 100644 --- a/docs/core/jpyc_core_sdk/utils.html +++ b/docs/core/jpyc_core_sdk/utils.html @@ -172,7 +172,7 @@

API Documentation

ChainName
  • - ContractVersion + ContractType
  • Bytes32 @@ -245,7 +245,7 @@

    33 ArtifactType, 34 ChainMetadata, 35 ChainName, -36 ContractVersion, +36 ContractType, 37) 38from .validators import ( 39 Bytes32, @@ -287,7 +287,7 @@

    75 "ArtifactType", 76 "ChainMetadata", 77 "ChainName", -78 "ContractVersion", +78 "ContractType", 79 # validators 80 "Bytes32", 81 "ChecksumAddress", @@ -304,43 +304,35 @@

    def - get_proxy_address(contract_version: ContractVersion) -> eth_typing.evm.ChecksumAddress: + get_proxy_address(contract_type: ContractType) -> eth_typing.evm.ChecksumAddress:
    -
    43def get_proxy_address(contract_version: ContractVersion) -> ChecksumAddress:
    -44    """Get proxy address from the specified version.
    +            
    43def get_proxy_address(contract_type: ContractType) -> ChecksumAddress:
    +44    """Get proxy address from the specified contract type.
     45
    -46    Note:
    -47        Default address should be the address of the latest version \
    -48        (e.g., v2 as of May 2025).
    -49
    -50    Args:
    -51        contract_version (ContractVersion): Contract version
    -52
    -53    Returns:
    -54        ChecksumAddress: Checksum address of proxy contract
    -55    """
    -56    match contract_version:
    -57        case "2":
    -58            return V2_PROXY_ADDRESS
    +46    Args:
    +47        contract_type (ContractType): Contract type (`jpyc` or `jpyc_prepaid`)
    +48
    +49    Returns:
    +50        ChecksumAddress: Checksum address of proxy contract
    +51    """
    +52    match contract_type:
    +53        case "jpyc":
    +54            return JPYC_PROXY_ADDRESS
    +55        case "jpyc_prepaid":
    +56            return JPYC_PREPAID_PROXY_ADDRESS
     
    -

    Get proxy address from the specified version.

    - -
    Note:
    - -
    -

    Default address should be the address of the latest version (e.g., v2 as of May 2025).

    -
    +

    Get proxy address from the specified contract type.

    Arguments:
      -
    • contract_version (ContractVersion): Contract version
    • +
    • contract_type (ContractType): Contract type (jpyc or jpyc_prepaid)
    Returns:
    @@ -363,18 +355,18 @@
    Returns:
    -
    25def get_artifacts(file_path: Path, artifact_type: ArtifactType) -> Any:
    -26    """Get contract artifacts from the specified file path.
    -27
    -28    Args:
    -29        file_path (Path): absolute path of artifacts file
    -30        artifact_type (ArtifactType): type of artifacts
    -31
    -32    Returns:
    -33        Any: Artifacts of contracts
    -34    """
    -35    with open(file_path) as f:
    -36        return json.load(f)[artifact_type]
    +            
    23def get_artifacts(file_path: Path, artifact_type: ArtifactType) -> Any:
    +24    """Get contract artifacts from the specified file path.
    +25
    +26    Args:
    +27        file_path (Path): absolute path of artifacts file
    +28        artifact_type (ArtifactType): type of artifacts
    +29
    +30    Returns:
    +31        Any: Artifacts of contracts
    +32    """
    +33    with open(file_path) as f:
    +34        return json.load(f)[artifact_type]
     
    @@ -401,35 +393,33 @@
    Returns:
    def - resolve_artifacts_file_path(contract_version: ContractVersion) -> pathlib._local.Path: + resolve_artifacts_file_path(contract_type: ContractType) -> pathlib._local.Path:
    -
     9def resolve_artifacts_file_path(contract_version: ContractVersion) -> Path:
    -10    """Resolve the path of artifacts file from the specified contract version.
    +            
     9def resolve_artifacts_file_path(contract_type: ContractType) -> Path:
    +10    """Resolve the path of artifacts file from the specified contract type.
     11
     12    Args:
    -13        contract_version (ContractVersion): Contract version
    +13        contract_type (ContractType): Contract type
     14
     15    Returns:
     16        Path: Absolute path of artifacts file
     17    """
    -18    path = Path(__file__).parent.parent.joinpath(
    -19        "artifacts", f"v{contract_version}.json"
    -20    )
    -21
    -22    return path.absolute()
    +18    path = Path(__file__).parent.parent.joinpath("artifacts", f"{contract_type}.json")
    +19
    +20    return path.absolute()
     
    -

    Resolve the path of artifacts file from the specified contract version.

    +

    Resolve the path of artifacts file from the specified contract type.

    Arguments:
      -
    • contract_version (ContractVersion): Contract version
    • +
    • contract_type (ContractType): Contract type
    Returns:
    @@ -481,7 +471,7 @@
    Returns:
    def - get_default_rpc_endpoint( chain_name: ChainName | None, network_name: str | None) -> Annotated[str, AfterValidator(func=<function validate_rpc_endpoint at 0x11036a0c0>)]: + get_default_rpc_endpoint( chain_name: ChainName | None, network_name: str | None) -> Annotated[str, AfterValidator(func=<function validate_rpc_endpoint at 0x107b4ad40>)]: @@ -611,7 +601,7 @@
    Raises:
    def - remove_decimals( value: Union[Annotated[int, AfterValidator(func=<function validate_uint256>)], decimal.Decimal]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x110369f80>)]: + remove_decimals( value: Union[Annotated[int, AfterValidator(func=<function validate_uint256>)], decimal.Decimal]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x107b4ac00>)]: @@ -1243,14 +1233,14 @@
    Attributes:
    -
    +
    - type ContractVersion = -Literal['2'] + type ContractType = +Literal['jpyc', 'jpyc_prepaid']
    - + diff --git a/docs/core/search.js b/docs/core/search.js index 4171ed3..56f0b19 100644 --- a/docs/core/search.js +++ b/docs/core/search.js @@ -1,6 +1,6 @@ window.pdocSearch = (function(){ /** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[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.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o

    \n"}, {"fullname": "jpyc_core_sdk.SdkClient", "modulename": "jpyc_core_sdk", "qualname": "SdkClient", "kind": "class", "doc": "

    SDK client.

    \n", "bases": "jpyc_core_sdk.interfaces.client.ISdkClient"}, {"fullname": "jpyc_core_sdk.SdkClient.__init__", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.__init__", "kind": "function", "doc": "

    Constructor that initializes SDK client.

    \n\n
    Notes:
    \n\n
    \n
      \n
    • Either chain_name & network_name parameters or rpc_endpoint parameter are required.
    • \n
    • This constructor prioritizes rpc_endpoint parameter over chain_name & network_name parameters when configuring rpc_endpoint.
    • \n
    \n
    \n\n
    Arguments:
    \n\n
      \n
    • chain_name (str, optional): Chain name
    • \n
    • network_name (str, optional): Network name
    • \n
    • rpc_endpoint (RpcEndpoint, optional): RPC endpoint
    • \n
    • private_key (Bytes32, optional): private key of EOA
    • \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidBytes32: If the supplied private_key is not in a valid form
    • \n
    • InvalidRpcEndpoint: If the supplied rpc_endpoint is not in a valid form
    • \n
    • NetworkNotSupported: If the specified network is not supported by the SDK
    • \n
    • ValidationError: If pydantic validation fails
    • \n
    \n", "signature": "(\tchain_name: ChainName | None = None,\tnetwork_name: str | None = None,\trpc_endpoint: Optional[Annotated[str, AfterValidator(func=<function validate_rpc_endpoint>)]] = None,\tprivate_key: Optional[Annotated[str, AfterValidator(func=<function validate_bytes32>)]] = None)"}, {"fullname": "jpyc_core_sdk.SdkClient.w3", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.w3", "kind": "variable", "doc": "

    Web3: Configured web3 instance

    \n"}, {"fullname": "jpyc_core_sdk.SdkClient.rpc_endpoint", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.rpc_endpoint", "kind": "variable", "doc": "

    str: RPC endpoint

    \n"}, {"fullname": "jpyc_core_sdk.SdkClient.account", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.account", "kind": "variable", "doc": "

    LocalAccount | None: Account instance

    \n"}, {"fullname": "jpyc_core_sdk.SdkClient.set_default_provider", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.set_default_provider", "kind": "function", "doc": "

    Set provider using one of the default RPC endpoints.

    \n\n
    Arguments:
    \n\n
      \n
    • chain_name (str): Chain name
    • \n
    • network_name (str): Network name
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Web3: Configured web3 instance

    \n
    \n\n
    Raises:
    \n\n
      \n
    • NetworkNotSupported: If the specified network is not supported by the SDK
    • \n
    • ValidationError: If pydantic validation fails
    • \n
    \n", "signature": "(self, chain_name: ChainName, network_name: str) -> web3.main.Web3:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.SdkClient.set_custom_provider", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.set_custom_provider", "kind": "function", "doc": "

    Set provider using a custom RPC endpoint.

    \n\n
    Arguments:
    \n\n
      \n
    • rpc_endpoint (RpcEndpoint): Custom RPC endpoint
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Web3: Configured web3 instance

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidRpcEndpoint: If the supplied rpc_endpoint is not in a valid form
    • \n
    \n", "signature": "(\tself,\trpc_endpoint: Annotated[str, AfterValidator(func=<function validate_rpc_endpoint>)]) -> web3.main.Web3:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.SdkClient.set_account", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.set_account", "kind": "function", "doc": "

    Set account with a private key.

    \n\n
    Notes:
    \n\n
    \n

    If private_key parameter is set to None, this method removes account from the configured web3 instance.

    \n
    \n\n
    Arguments:
    \n\n
      \n
    • private_key (Bytes32, optional): Private key of account
    • \n
    \n\n
    Returns:
    \n\n
    \n

    LocalAccount | None: Configured account instance

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidBytes32: If the supplied private_key is not in a valid form
    • \n
    \n", "signature": "(\tself,\tprivate_key: Optional[Annotated[str, AfterValidator(func=<function validate_bytes32>)]]) -> eth_account.signers.local.LocalAccount | None:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.SdkClient.get_account_address", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.get_account_address", "kind": "function", "doc": "

    Get address of the configured account.

    \n\n
    Returns:
    \n\n
    \n

    ChecksumAddress: Public address of account

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    \n", "signature": "(\tself) -> Annotated[str, AfterValidator(func=<function validate_checksum_address at 0x110369da0>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC", "modulename": "jpyc_core_sdk", "qualname": "JPYC", "kind": "class", "doc": "

    Implementation of IJPYC.

    \n", "bases": "jpyc_core_sdk.interfaces.jpyc.IJPYC"}, {"fullname": "jpyc_core_sdk.JPYC.__init__", "modulename": "jpyc_core_sdk", "qualname": "JPYC.__init__", "kind": "function", "doc": "

    Constructor that initializes JPYC client.

    \n\n
    Notes:
    \n\n
    \n
      \n
    • If client parameter is configured to use localhost network, this deploys JPYC contracts to localhost network, initializes it, and sets its address to address attribute.
    • \n
    • If contract_address is supplied, this configures contract instance with that address.
    • \n
    \n
    \n\n
    Arguments:
    \n\n
      \n
    • client (SdkClient): Configured SDK client
    • \n
    • contract_version (ContractVersion): Contract version
    • \n
    • contract_address (EthChecksumAddress, optional): Contract address
    • \n
    \n", "signature": "(\tclient: jpyc_core_sdk.client.SdkClient,\tcontract_version: ContractVersion = '2',\tcontract_address: Optional[eth_typing.evm.ChecksumAddress] = None)"}, {"fullname": "jpyc_core_sdk.JPYC.client", "modulename": "jpyc_core_sdk", "qualname": "JPYC.client", "kind": "variable", "doc": "

    ISdkClient: Configured SDK client

    \n"}, {"fullname": "jpyc_core_sdk.JPYC.contract", "modulename": "jpyc_core_sdk", "qualname": "JPYC.contract", "kind": "variable", "doc": "

    Contract: Configured contract instance

    \n"}, {"fullname": "jpyc_core_sdk.JPYC.is_minter", "modulename": "jpyc_core_sdk", "qualname": "JPYC.is_minter", "kind": "function", "doc": "

    Call isMinter function.

    \n\n
    Arguments:
    \n\n
      \n
    • account (ChecksumAddress): Account address
    • \n
    \n\n
    Returns:
    \n\n
    \n

    bool: True if account is a minter, false otherwise

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidChecksumAddress: If supplied account is not in a valid form
    • \n
    \n", "signature": "(\tself,\taccount: Annotated[str, AfterValidator(func=<function validate_checksum_address>)]) -> bool:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.minter_allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.minter_allowance", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.total_supply", "modulename": "jpyc_core_sdk", "qualname": "JPYC.total_supply", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.balance_of", "modulename": "jpyc_core_sdk", "qualname": "JPYC.balance_of", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.allowance", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.nonces", "modulename": "jpyc_core_sdk", "qualname": "JPYC.nonces", "kind": "function", "doc": "

    Call nonces function.

    \n\n
    Arguments:
    \n\n
      \n
    • owner (ChecksumAddress): Owner address
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Uint256: Nonce for EIP2612's permit.

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidChecksumAddress: If supplied owner is not in a valid form
    • \n
    \n", "signature": "(\tself,\towner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x110369f80>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.configure_minter", "modulename": "jpyc_core_sdk", "qualname": "JPYC.configure_minter", "kind": "function", "doc": "

    Call configureMinter function.

    \n\n
    Arguments:
    \n\n
      \n
    • minter (ChecksumAddress): Minter address
    • \n
    • minter_allowed_amount (Uint256): Minter allowance
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied minter is not in a valid form
    • \n
    • InvalidUint256: If supplied minter_allowed_amount is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tminter: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tminter_allowed_amount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.mint", "modulename": "jpyc_core_sdk", "qualname": "JPYC.mint", "kind": "function", "doc": "

    Call mint function.

    \n\n
    Arguments:
    \n\n
      \n
    • to (ChecksumAddress): Receiver address
    • \n
    • amount (Uint256): Amount of tokens to mint
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied to is not in a valid form
    • \n
    • InvalidUint256: If supplied amount is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tamount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.transfer", "modulename": "jpyc_core_sdk", "qualname": "JPYC.transfer", "kind": "function", "doc": "

    Call transfer function.

    \n\n
    Arguments:
    \n\n
      \n
    • to (ChecksumAddress): Receiver address
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied to is not in a valid form
    • \n
    • InvalidUint256: If supplied value is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.transfer_from", "modulename": "jpyc_core_sdk", "qualname": "JPYC.transfer_from", "kind": "function", "doc": "

    Call transferFrom function.

    \n\n
    Arguments:
    \n\n
      \n
    • from_ (ChecksumAddress): Owner address
    • \n
    • to (ChecksumAddress): Receiver address
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied from_ or to is not in a valid form
    • \n
    • InvalidUint256: If supplied value is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tfrom_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.transfer_with_authorization", "modulename": "jpyc_core_sdk", "qualname": "JPYC.transfer_with_authorization", "kind": "function", "doc": "

    Call transferWithAuthorization function.

    \n\n
    Arguments:
    \n\n
      \n
    • from_ (ChecksumAddress): Owner address
    • \n
    • to (ChecksumAddress): Receiver allowance
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    • valid_after (Uint256): Unix time when transaction becomes valid
    • \n
    • valid_before (Uint256): Unix time when transaction becomes invalid
    • \n
    • nonce (Bytes32): Unique nonce
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied nonce or r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied from_ or to is not in a valid form
    • \n
    • InvalidUint256: If supplied value or valid_after or valid_before is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tfrom_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tnonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.receive_with_authorization", "modulename": "jpyc_core_sdk", "qualname": "JPYC.receive_with_authorization", "kind": "function", "doc": "

    Call receiveWithAuthorization function.

    \n\n
    Arguments:
    \n\n
      \n
    • from_ (ChecksumAddress): Owner address
    • \n
    • to (ChecksumAddress): Receiver allowance
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    • valid_after (Uint256): Unix time when transaction becomes valid
    • \n
    • valid_before (Uint256): Unix time when transaction becomes invalid
    • \n
    • nonce (Bytes32): Unique nonce
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied nonce or r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied from_ or to is not in a valid form
    • \n
    • InvalidUint256: If supplied value or valid_after or valid_before is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tfrom_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tnonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.cancel_authorization", "modulename": "jpyc_core_sdk", "qualname": "JPYC.cancel_authorization", "kind": "function", "doc": "

    Call cancelAuthorization function.

    \n\n
    Arguments:
    \n\n
      \n
    • authorizer (ChecksumAddress): Owner address
    • \n
    • nonce (Bytes32): Unique nonce
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied nonce or r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied authorizer is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tauthorizer: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tnonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.approve", "modulename": "jpyc_core_sdk", "qualname": "JPYC.approve", "kind": "function", "doc": "

    Call approve function.

    \n\n
    Arguments:
    \n\n
      \n
    • spender (ChecksumAddress): Spender address
    • \n
    • value (Uint256): Amount of allowance
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied spender is not in a valid form
    • \n
    • InvalidUint256: If supplied value is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.increase_allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.increase_allowance", "kind": "function", "doc": "

    Call increaseAllowance function.

    \n\n
    Arguments:
    \n\n
      \n
    • spender (ChecksumAddress): Spender address
    • \n
    • increment (Uint256): Amount of allowance to increase
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied spender is not in a valid form
    • \n
    • InvalidUint256: If supplied increment is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tincrement: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.decrease_allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.decrease_allowance", "kind": "function", "doc": "

    Call decreaseAllowance function.

    \n\n
    Arguments:
    \n\n
      \n
    • spender (ChecksumAddress): Spender address
    • \n
    • decrement (Uint256): Amount of allowance to decrease
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied spender is not in a valid form
    • \n
    • InvalidUint256: If supplied decrement is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tdecrement: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.JPYC.permit", "modulename": "jpyc_core_sdk", "qualname": "JPYC.permit", "kind": "function", "doc": "

    Call permit function.

    \n\n
    Arguments:
    \n\n
      \n
    • owner (ChecksumAddress): Owner address
    • \n
    • spender (ChecksumAddress): Spender address
    • \n
    • value (Uint256): Amount of allowance
    • \n
    • deadline (Uint256): Unix time when transaction becomes invalid
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied owner or spender is not in a valid form
    • \n
    • InvalidUint256: If supplied value or deadline is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\towner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tdeadline: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x11036a020>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.utils", "modulename": "jpyc_core_sdk.utils", "kind": "module", "doc": "

    \n"}, {"fullname": "jpyc_core_sdk.utils.get_proxy_address", "modulename": "jpyc_core_sdk.utils", "qualname": "get_proxy_address", "kind": "function", "doc": "

    Get proxy address from the specified version.

    \n\n
    Note:
    \n\n
    \n

    Default address should be the address of the latest version (e.g., v2 as of May 2025).

    \n
    \n\n
    Arguments:
    \n\n
      \n
    • contract_version (ContractVersion): Contract version
    • \n
    \n\n
    Returns:
    \n\n
    \n

    ChecksumAddress: Checksum address of proxy contract

    \n
    \n", "signature": "(contract_version: ContractVersion) -> eth_typing.evm.ChecksumAddress:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.utils.get_artifacts", "modulename": "jpyc_core_sdk.utils", "qualname": "get_artifacts", "kind": "function", "doc": "

    Get contract artifacts from the specified file path.

    \n\n
    Arguments:
    \n\n
      \n
    • file_path (Path): absolute path of artifacts file
    • \n
    • artifact_type (ArtifactType): type of artifacts
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Any: Artifacts of contracts

    \n
    \n", "signature": "(file_path: pathlib._local.Path, artifact_type: ArtifactType) -> Any:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.utils.resolve_artifacts_file_path", "modulename": "jpyc_core_sdk.utils", "qualname": "resolve_artifacts_file_path", "kind": "function", "doc": "

    Resolve the path of artifacts file from the specified contract version.

    \n\n
    Arguments:
    \n\n
      \n
    • contract_version (ContractVersion): Contract version
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Path: Absolute path of artifacts file

    \n
    \n", "signature": "(contract_version: ContractVersion) -> pathlib._local.Path:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.utils.enumerate_supported_networks", "modulename": "jpyc_core_sdk.utils", "qualname": "enumerate_supported_networks", "kind": "function", "doc": "

    Enumerate all the supported networks.

    \n\n
    Returns:
    \n\n
    \n

    str: supported networks

    \n
    \n", "signature": "() -> str:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.utils.get_default_rpc_endpoint", "modulename": "jpyc_core_sdk.utils", "qualname": "get_default_rpc_endpoint", "kind": "function", "doc": "

    Get the default RPC endpoint for the specified network.

    \n\n
    Arguments:
    \n\n
      \n
    • chain_name (ChainName, optional): Chain name
    • \n
    • network_name (str, optional): Network name
    • \n
    \n\n
    Returns:
    \n\n
    \n

    RpcEndpoint: RPC endpoint

    \n
    \n\n
    Raises:
    \n\n
      \n
    • NetworkNotSupported: If the specified network is not supported by the SDK
    • \n
    \n", "signature": "(\tchain_name: ChainName | None,\tnetwork_name: str | None) -> Annotated[str, AfterValidator(func=<function validate_rpc_endpoint at 0x11036a0c0>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.utils.SUPPORTED_CHAINS", "modulename": "jpyc_core_sdk.utils", "qualname": "SUPPORTED_CHAINS", "kind": "variable", "doc": "

    \n", "default_value": "{'ethereum': {'mainnet': {'id': 1, 'name': 'Ethereum Mainnet', 'rpc_endpoints': ['https://ethereum-rpc.publicnode.com']}, 'sepolia': {'id': 11155111, 'name': 'Ethereum Sepolia Testnet', 'rpc_endpoints': ['https://ethereum-sepolia-rpc.publicnode.com']}}, 'polygon': {'mainnet': {'id': 137, 'name': 'Polygon Mainnet', 'rpc_endpoints': ['https://polygon-rpc.com']}, 'amoy': {'id': 80002, 'name': 'Polygon Amoy Testnet', 'rpc_endpoints': ['https://rpc-amoy.polygon.technology']}}, 'gnosis': {'mainnet': {'id': 100, 'name': 'Gnosis Chain', 'rpc_endpoints': ['https://rpc.gnosischain.com']}, 'chiado': {'id': 10200, 'name': 'Gnosis Chiado Testnet', 'rpc_endpoints': ['https://rpc.chiadochain.net']}}, 'avalanche': {'mainnet': {'id': 43114, 'name': 'Avalanche C-Chain', 'rpc_endpoints': ['https://api.avax.network/ext/bc/C/rpc']}, 'fuji': {'id': 43113, 'name': 'Avalanche Fuji Testnet', 'rpc_endpoints': ['https://api.avax-test.network/ext/bc/C/rpc']}}, 'astar': {'mainnet': {'id': 592, 'name': 'Astar Network', 'rpc_endpoints': ['https://astar.public.blastapi.io']}}, 'shiden': {'mainnet': {'id': 336, 'name': 'Shiden Network', 'rpc_endpoints': ['https://shiden.public.blastapi.io']}}, 'localhost': {'devnet': {'id': 31337, 'name': 'Localhost Network', 'rpc_endpoints': ['http://127.0.0.1:8545/']}}}"}, {"fullname": "jpyc_core_sdk.utils.POA_MIDDLEWARE", "modulename": "jpyc_core_sdk.utils", "qualname": "POA_MIDDLEWARE", "kind": "variable", "doc": "

    \n", "default_value": "'poa_middleware'"}, {"fullname": "jpyc_core_sdk.utils.SIGN_MIDDLEWARE", "modulename": "jpyc_core_sdk.utils", "qualname": "SIGN_MIDDLEWARE", "kind": "variable", "doc": "

    \n", "default_value": "'sign_middleware'"}, {"fullname": "jpyc_core_sdk.utils.UINT_MIN", "modulename": "jpyc_core_sdk.utils", "qualname": "UINT_MIN", "kind": "variable", "doc": "

    \n", "default_value": "0"}, {"fullname": "jpyc_core_sdk.utils.UINT256_MAX", "modulename": "jpyc_core_sdk.utils", "qualname": "UINT256_MAX", "kind": "variable", "doc": "

    \n", "default_value": "115792089237316195423570985008687907853269984665640564039457584007913129639935"}, {"fullname": "jpyc_core_sdk.utils.UINT8_MAX", "modulename": "jpyc_core_sdk.utils", "qualname": "UINT8_MAX", "kind": "variable", "doc": "

    \n", "default_value": "255"}, {"fullname": "jpyc_core_sdk.utils.remove_decimals", "modulename": "jpyc_core_sdk.utils", "qualname": "remove_decimals", "kind": "function", "doc": "

    Remove decimals.

    \n\n
    Arguments:
    \n\n
      \n
    • value (Uint256 | Decimal): Value in ether
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Uint256: Value in wei

    \n
    \n", "signature": "(\tvalue: Union[Annotated[int, AfterValidator(func=<function validate_uint256>)], decimal.Decimal]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x110369f80>)]:", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.utils.restore_decimals", "modulename": "jpyc_core_sdk.utils", "qualname": "restore_decimals", "kind": "function", "doc": "

    Decorator to restore decimals.

    \n", "signature": "(func):", "funcdef": "def"}, {"fullname": "jpyc_core_sdk.utils.AccountNotInitialized", "modulename": "jpyc_core_sdk.utils", "qualname": "AccountNotInitialized", "kind": "class", "doc": "

    Raised when account is not initialized or hoisted to web3 instance.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, {"fullname": "jpyc_core_sdk.utils.AccountNotInitialized.code", "modulename": "jpyc_core_sdk.utils", "qualname": "AccountNotInitialized.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "101"}, {"fullname": "jpyc_core_sdk.utils.InvalidBytes32", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidBytes32", "kind": "class", "doc": "

    Raised when the given byte string is not a valid bytes32.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, {"fullname": "jpyc_core_sdk.utils.InvalidBytes32.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidBytes32.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, {"fullname": "jpyc_core_sdk.utils.InvalidBytes32.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidBytes32.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "203"}, {"fullname": "jpyc_core_sdk.utils.InvalidChecksumAddress", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidChecksumAddress", "kind": "class", "doc": "

    Raised when the given address is not a valid checksum address.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, {"fullname": "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidChecksumAddress.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, {"fullname": "jpyc_core_sdk.utils.InvalidChecksumAddress.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidChecksumAddress.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "200"}, {"fullname": "jpyc_core_sdk.utils.InvalidUint8", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint8", "kind": "class", "doc": "

    Raised when the given integer is not a valid uint8.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, {"fullname": "jpyc_core_sdk.utils.InvalidUint8.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint8.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, {"fullname": "jpyc_core_sdk.utils.InvalidUint8.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint8.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "201"}, {"fullname": "jpyc_core_sdk.utils.InvalidUint256", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint256", "kind": "class", "doc": "

    Raised when the given integer is not a valid uint256.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, {"fullname": "jpyc_core_sdk.utils.InvalidUint256.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint256.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, {"fullname": "jpyc_core_sdk.utils.InvalidUint256.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint256.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "202"}, {"fullname": "jpyc_core_sdk.utils.NetworkNotSupported", "modulename": "jpyc_core_sdk.utils", "qualname": "NetworkNotSupported", "kind": "class", "doc": "

    Raised when the specified network is not supported by the SDK.

    \n\n
    Attributes:
    \n\n
      \n
    • chain_name (str): Chain name
    • \n
    • network_name (str): Network name
    • \n
    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, {"fullname": "jpyc_core_sdk.utils.NetworkNotSupported.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "NetworkNotSupported.__init__", "kind": "function", "doc": "

    \n", "signature": "(chain_name: ChainName, network_name: str)"}, {"fullname": "jpyc_core_sdk.utils.NetworkNotSupported.code", "modulename": "jpyc_core_sdk.utils", "qualname": "NetworkNotSupported.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "100"}, {"fullname": "jpyc_core_sdk.utils.TransactionFailed", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionFailed", "kind": "class", "doc": "

    Raised when transaction fails.

    \n\n
    Attributes:
    \n\n
      \n
    • message (str): Error message
    • \n
    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, {"fullname": "jpyc_core_sdk.utils.TransactionFailed.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionFailed.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, {"fullname": "jpyc_core_sdk.utils.TransactionFailed.code", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionFailed.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "301"}, {"fullname": "jpyc_core_sdk.utils.TransactionSimulationFailed", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionSimulationFailed", "kind": "class", "doc": "

    Raised when transaction simulation fails.

    \n\n
    Attributes:
    \n\n
      \n
    • message (str): Error message
    • \n
    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, {"fullname": "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionSimulationFailed.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, {"fullname": "jpyc_core_sdk.utils.TransactionSimulationFailed.code", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionSimulationFailed.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "300"}, {"fullname": "jpyc_core_sdk.utils.ArtifactType", "modulename": "jpyc_core_sdk.utils", "qualname": "ArtifactType", "kind": "variable", "doc": "

    \n", "default_value": "Literal['abi', 'bytecode']"}, {"fullname": "jpyc_core_sdk.utils.ChainMetadata", "modulename": "jpyc_core_sdk.utils", "qualname": "ChainMetadata", "kind": "variable", "doc": "

    \n", "default_value": "dict[ChainName, dict[str, jpyc_core_sdk.utils.types.NetworkMetadata]]"}, {"fullname": "jpyc_core_sdk.utils.ChainName", "modulename": "jpyc_core_sdk.utils", "qualname": "ChainName", "kind": "variable", "doc": "

    \n", "default_value": "Literal['ethereum', 'polygon', 'gnosis', 'avalanche', 'astar', 'shiden', 'localhost']"}, {"fullname": "jpyc_core_sdk.utils.ContractVersion", "modulename": "jpyc_core_sdk.utils", "qualname": "ContractVersion", "kind": "variable", "doc": "

    \n", "default_value": "Literal['2']"}, {"fullname": "jpyc_core_sdk.utils.Bytes32", "modulename": "jpyc_core_sdk.utils", "qualname": "Bytes32", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[str, AfterValidator(func=<function validate_bytes32>)]"}, {"fullname": "jpyc_core_sdk.utils.ChecksumAddress", "modulename": "jpyc_core_sdk.utils", "qualname": "ChecksumAddress", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[str, AfterValidator(func=<function validate_checksum_address>)]"}, {"fullname": "jpyc_core_sdk.utils.RpcEndpoint", "modulename": "jpyc_core_sdk.utils", "qualname": "RpcEndpoint", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[str, AfterValidator(func=<function validate_rpc_endpoint>)]"}, {"fullname": "jpyc_core_sdk.utils.Uint256", "modulename": "jpyc_core_sdk.utils", "qualname": "Uint256", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[int, AfterValidator(func=<function validate_uint256>)]"}, {"fullname": "jpyc_core_sdk.utils.Uint8", "modulename": "jpyc_core_sdk.utils", "qualname": "Uint8", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[int, AfterValidator(func=<function validate_uint8>)]"}]; + /** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"jpyc_core_sdk": {"fullname": "jpyc_core_sdk", "modulename": "jpyc_core_sdk", "kind": "module", "doc": "

    \n"}, "jpyc_core_sdk.SdkClient": {"fullname": "jpyc_core_sdk.SdkClient", "modulename": "jpyc_core_sdk", "qualname": "SdkClient", "kind": "class", "doc": "

    SDK client.

    \n", "bases": "jpyc_core_sdk.interfaces.client.ISdkClient"}, "jpyc_core_sdk.SdkClient.__init__": {"fullname": "jpyc_core_sdk.SdkClient.__init__", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.__init__", "kind": "function", "doc": "

    Constructor that initializes SDK client.

    \n\n
    Notes:
    \n\n
    \n
      \n
    • Either chain_name & network_name parameters or rpc_endpoint parameter are required.
    • \n
    • This constructor prioritizes rpc_endpoint parameter over chain_name & network_name parameters when configuring rpc_endpoint.
    • \n
    \n
    \n\n
    Arguments:
    \n\n
      \n
    • chain_name (str, optional): Chain name
    • \n
    • network_name (str, optional): Network name
    • \n
    • rpc_endpoint (RpcEndpoint, optional): RPC endpoint
    • \n
    • private_key (Bytes32, optional): private key of EOA
    • \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidBytes32: If the supplied private_key is not in a valid form
    • \n
    • InvalidRpcEndpoint: If the supplied rpc_endpoint is not in a valid form
    • \n
    • NetworkNotSupported: If the specified network is not supported by the SDK
    • \n
    • ValidationError: If pydantic validation fails
    • \n
    \n", "signature": "(\tchain_name: ChainName | None = None,\tnetwork_name: str | None = None,\trpc_endpoint: Optional[Annotated[str, AfterValidator(func=<function validate_rpc_endpoint>)]] = None,\tprivate_key: Optional[Annotated[str, AfterValidator(func=<function validate_bytes32>)]] = None)"}, "jpyc_core_sdk.SdkClient.w3": {"fullname": "jpyc_core_sdk.SdkClient.w3", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.w3", "kind": "variable", "doc": "

    Web3: Configured web3 instance

    \n"}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"fullname": "jpyc_core_sdk.SdkClient.rpc_endpoint", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.rpc_endpoint", "kind": "variable", "doc": "

    str: RPC endpoint

    \n"}, "jpyc_core_sdk.SdkClient.account": {"fullname": "jpyc_core_sdk.SdkClient.account", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.account", "kind": "variable", "doc": "

    LocalAccount | None: Account instance

    \n"}, "jpyc_core_sdk.SdkClient.set_default_provider": {"fullname": "jpyc_core_sdk.SdkClient.set_default_provider", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.set_default_provider", "kind": "function", "doc": "

    Set provider using one of the default RPC endpoints.

    \n\n
    Arguments:
    \n\n
      \n
    • chain_name (str): Chain name
    • \n
    • network_name (str): Network name
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Web3: Configured web3 instance

    \n
    \n\n
    Raises:
    \n\n
      \n
    • NetworkNotSupported: If the specified network is not supported by the SDK
    • \n
    • ValidationError: If pydantic validation fails
    • \n
    \n", "signature": "(self, chain_name: ChainName, network_name: str) -> web3.main.Web3:", "funcdef": "def"}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"fullname": "jpyc_core_sdk.SdkClient.set_custom_provider", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.set_custom_provider", "kind": "function", "doc": "

    Set provider using a custom RPC endpoint.

    \n\n
    Arguments:
    \n\n
      \n
    • rpc_endpoint (RpcEndpoint): Custom RPC endpoint
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Web3: Configured web3 instance

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidRpcEndpoint: If the supplied rpc_endpoint is not in a valid form
    • \n
    \n", "signature": "(\tself,\trpc_endpoint: Annotated[str, AfterValidator(func=<function validate_rpc_endpoint>)]) -> web3.main.Web3:", "funcdef": "def"}, "jpyc_core_sdk.SdkClient.set_account": {"fullname": "jpyc_core_sdk.SdkClient.set_account", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.set_account", "kind": "function", "doc": "

    Set account with a private key.

    \n\n
    Notes:
    \n\n
    \n

    If private_key parameter is set to None, this method removes account from the configured web3 instance.

    \n
    \n\n
    Arguments:
    \n\n
      \n
    • private_key (Bytes32, optional): Private key of account
    • \n
    \n\n
    Returns:
    \n\n
    \n

    LocalAccount | None: Configured account instance

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidBytes32: If the supplied private_key is not in a valid form
    • \n
    \n", "signature": "(\tself,\tprivate_key: Optional[Annotated[str, AfterValidator(func=<function validate_bytes32>)]]) -> eth_account.signers.local.LocalAccount | None:", "funcdef": "def"}, "jpyc_core_sdk.SdkClient.get_account_address": {"fullname": "jpyc_core_sdk.SdkClient.get_account_address", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.get_account_address", "kind": "function", "doc": "

    Get address of the configured account.

    \n\n
    Returns:
    \n\n
    \n

    ChecksumAddress: Public address of account

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    \n", "signature": "(\tself) -> Annotated[str, AfterValidator(func=<function validate_checksum_address at 0x107b4a8e0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC": {"fullname": "jpyc_core_sdk.JPYC", "modulename": "jpyc_core_sdk", "qualname": "JPYC", "kind": "class", "doc": "

    Implementation of IJPYC.

    \n", "bases": "jpyc_core_sdk.interfaces.jpyc.IJPYC"}, "jpyc_core_sdk.JPYC.__init__": {"fullname": "jpyc_core_sdk.JPYC.__init__", "modulename": "jpyc_core_sdk", "qualname": "JPYC.__init__", "kind": "function", "doc": "

    Constructor that initializes a JPYC client.

    \n\n
    Notes:
    \n\n
    \n
      \n
    • If client parameter is configured to use localhost network, this deploys JPYC contracts to localhost network, initializes it, and sets its address to address attribute.
    • \n
    • If contract_address is supplied, this configures contract instance with that address.
    • \n
    \n
    \n\n
    Arguments:
    \n\n
      \n
    • client (SdkClient): Configured SDK client
    • \n
    • contract_type (ContractType): Contract type (jpyc or jpyc_prepaid)
    • \n
    • contract_address (EthChecksumAddress, optional): Contract address
    • \n
    \n", "signature": "(\tclient: jpyc_core_sdk.client.SdkClient,\tcontract_type: ContractType = 'jpyc',\tcontract_address: Optional[eth_typing.evm.ChecksumAddress] = None)"}, "jpyc_core_sdk.JPYC.client": {"fullname": "jpyc_core_sdk.JPYC.client", "modulename": "jpyc_core_sdk", "qualname": "JPYC.client", "kind": "variable", "doc": "

    ISdkClient: Configured SDK client

    \n"}, "jpyc_core_sdk.JPYC.contract": {"fullname": "jpyc_core_sdk.JPYC.contract", "modulename": "jpyc_core_sdk", "qualname": "JPYC.contract", "kind": "variable", "doc": "

    Contract: Configured contract instance

    \n"}, "jpyc_core_sdk.JPYC.is_minter": {"fullname": "jpyc_core_sdk.JPYC.is_minter", "modulename": "jpyc_core_sdk", "qualname": "JPYC.is_minter", "kind": "function", "doc": "

    Call isMinter function.

    \n\n
    Arguments:
    \n\n
      \n
    • account (ChecksumAddress): Account address
    • \n
    \n\n
    Returns:
    \n\n
    \n

    bool: True if account is a minter, false otherwise

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidChecksumAddress: If supplied account is not in a valid form
    • \n
    \n", "signature": "(\tself,\taccount: Annotated[str, AfterValidator(func=<function validate_checksum_address>)]) -> bool:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.minter_allowance": {"fullname": "jpyc_core_sdk.JPYC.minter_allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.minter_allowance", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, "jpyc_core_sdk.JPYC.total_supply": {"fullname": "jpyc_core_sdk.JPYC.total_supply", "modulename": "jpyc_core_sdk", "qualname": "JPYC.total_supply", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, "jpyc_core_sdk.JPYC.balance_of": {"fullname": "jpyc_core_sdk.JPYC.balance_of", "modulename": "jpyc_core_sdk", "qualname": "JPYC.balance_of", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, "jpyc_core_sdk.JPYC.allowance": {"fullname": "jpyc_core_sdk.JPYC.allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.allowance", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, "jpyc_core_sdk.JPYC.nonces": {"fullname": "jpyc_core_sdk.JPYC.nonces", "modulename": "jpyc_core_sdk", "qualname": "JPYC.nonces", "kind": "function", "doc": "

    Call nonces function.

    \n\n
    Arguments:
    \n\n
      \n
    • owner (ChecksumAddress): Owner address
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Uint256: Nonce for EIP2612's permit.

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidChecksumAddress: If supplied owner is not in a valid form
    • \n
    \n", "signature": "(\tself,\towner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x107b4ac00>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.configure_minter": {"fullname": "jpyc_core_sdk.JPYC.configure_minter", "modulename": "jpyc_core_sdk", "qualname": "JPYC.configure_minter", "kind": "function", "doc": "

    Call configureMinter function.

    \n\n
    Arguments:
    \n\n
      \n
    • minter (ChecksumAddress): Minter address
    • \n
    • minter_allowed_amount (Uint256): Minter allowance
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied minter is not in a valid form
    • \n
    • InvalidUint256: If supplied minter_allowed_amount is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tminter: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tminter_allowed_amount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.mint": {"fullname": "jpyc_core_sdk.JPYC.mint", "modulename": "jpyc_core_sdk", "qualname": "JPYC.mint", "kind": "function", "doc": "

    Call mint function.

    \n\n
    Arguments:
    \n\n
      \n
    • to (ChecksumAddress): Receiver address
    • \n
    • amount (Uint256): Amount of tokens to mint
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied to is not in a valid form
    • \n
    • InvalidUint256: If supplied amount is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tamount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.transfer": {"fullname": "jpyc_core_sdk.JPYC.transfer", "modulename": "jpyc_core_sdk", "qualname": "JPYC.transfer", "kind": "function", "doc": "

    Call transfer function.

    \n\n
    Arguments:
    \n\n
      \n
    • to (ChecksumAddress): Receiver address
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied to is not in a valid form
    • \n
    • InvalidUint256: If supplied value is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.transfer_from": {"fullname": "jpyc_core_sdk.JPYC.transfer_from", "modulename": "jpyc_core_sdk", "qualname": "JPYC.transfer_from", "kind": "function", "doc": "

    Call transferFrom function.

    \n\n
    Arguments:
    \n\n
      \n
    • from_ (ChecksumAddress): Owner address
    • \n
    • to (ChecksumAddress): Receiver address
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied from_ or to is not in a valid form
    • \n
    • InvalidUint256: If supplied value is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tfrom_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"fullname": "jpyc_core_sdk.JPYC.transfer_with_authorization", "modulename": "jpyc_core_sdk", "qualname": "JPYC.transfer_with_authorization", "kind": "function", "doc": "

    Call transferWithAuthorization function.

    \n\n
    Arguments:
    \n\n
      \n
    • from_ (ChecksumAddress): Owner address
    • \n
    • to (ChecksumAddress): Receiver allowance
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    • valid_after (Uint256): Unix time when transaction becomes valid
    • \n
    • valid_before (Uint256): Unix time when transaction becomes invalid
    • \n
    • nonce (Bytes32): Unique nonce
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied nonce or r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied from_ or to is not in a valid form
    • \n
    • InvalidUint256: If supplied value or valid_after or valid_before is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tfrom_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tnonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"fullname": "jpyc_core_sdk.JPYC.receive_with_authorization", "modulename": "jpyc_core_sdk", "qualname": "JPYC.receive_with_authorization", "kind": "function", "doc": "

    Call receiveWithAuthorization function.

    \n\n
    Arguments:
    \n\n
      \n
    • from_ (ChecksumAddress): Owner address
    • \n
    • to (ChecksumAddress): Receiver allowance
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    • valid_after (Uint256): Unix time when transaction becomes valid
    • \n
    • valid_before (Uint256): Unix time when transaction becomes invalid
    • \n
    • nonce (Bytes32): Unique nonce
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied nonce or r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied from_ or to is not in a valid form
    • \n
    • InvalidUint256: If supplied value or valid_after or valid_before is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tfrom_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tnonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.cancel_authorization": {"fullname": "jpyc_core_sdk.JPYC.cancel_authorization", "modulename": "jpyc_core_sdk", "qualname": "JPYC.cancel_authorization", "kind": "function", "doc": "

    Call cancelAuthorization function.

    \n\n
    Arguments:
    \n\n
      \n
    • authorizer (ChecksumAddress): Owner address
    • \n
    • nonce (Bytes32): Unique nonce
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied nonce or r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied authorizer is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tauthorizer: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tnonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.approve": {"fullname": "jpyc_core_sdk.JPYC.approve", "modulename": "jpyc_core_sdk", "qualname": "JPYC.approve", "kind": "function", "doc": "

    Call approve function.

    \n\n
    Arguments:
    \n\n
      \n
    • spender (ChecksumAddress): Spender address
    • \n
    • value (Uint256): Amount of allowance
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied spender is not in a valid form
    • \n
    • InvalidUint256: If supplied value is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.increase_allowance": {"fullname": "jpyc_core_sdk.JPYC.increase_allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.increase_allowance", "kind": "function", "doc": "

    Call increaseAllowance function.

    \n\n
    Arguments:
    \n\n
      \n
    • spender (ChecksumAddress): Spender address
    • \n
    • increment (Uint256): Amount of allowance to increase
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied spender is not in a valid form
    • \n
    • InvalidUint256: If supplied increment is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tincrement: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.decrease_allowance": {"fullname": "jpyc_core_sdk.JPYC.decrease_allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.decrease_allowance", "kind": "function", "doc": "

    Call decreaseAllowance function.

    \n\n
    Arguments:
    \n\n
      \n
    • spender (ChecksumAddress): Spender address
    • \n
    • decrement (Uint256): Amount of allowance to decrease
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied spender is not in a valid form
    • \n
    • InvalidUint256: If supplied decrement is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tdecrement: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.permit": {"fullname": "jpyc_core_sdk.JPYC.permit", "modulename": "jpyc_core_sdk", "qualname": "JPYC.permit", "kind": "function", "doc": "

    Call permit function.

    \n\n
    Arguments:
    \n\n
      \n
    • owner (ChecksumAddress): Owner address
    • \n
    • spender (ChecksumAddress): Spender address
    • \n
    • value (Uint256): Amount of allowance
    • \n
    • deadline (Uint256): Unix time when transaction becomes invalid
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied owner or spender is not in a valid form
    • \n
    • InvalidUint256: If supplied value or deadline is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\towner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tdeadline: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.utils": {"fullname": "jpyc_core_sdk.utils", "modulename": "jpyc_core_sdk.utils", "kind": "module", "doc": "

    \n"}, "jpyc_core_sdk.utils.get_proxy_address": {"fullname": "jpyc_core_sdk.utils.get_proxy_address", "modulename": "jpyc_core_sdk.utils", "qualname": "get_proxy_address", "kind": "function", "doc": "

    Get proxy address from the specified contract type.

    \n\n
    Arguments:
    \n\n
      \n
    • contract_type (ContractType): Contract type (jpyc or jpyc_prepaid)
    • \n
    \n\n
    Returns:
    \n\n
    \n

    ChecksumAddress: Checksum address of proxy contract

    \n
    \n", "signature": "(contract_type: ContractType) -> eth_typing.evm.ChecksumAddress:", "funcdef": "def"}, "jpyc_core_sdk.utils.get_artifacts": {"fullname": "jpyc_core_sdk.utils.get_artifacts", "modulename": "jpyc_core_sdk.utils", "qualname": "get_artifacts", "kind": "function", "doc": "

    Get contract artifacts from the specified file path.

    \n\n
    Arguments:
    \n\n
      \n
    • file_path (Path): absolute path of artifacts file
    • \n
    • artifact_type (ArtifactType): type of artifacts
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Any: Artifacts of contracts

    \n
    \n", "signature": "(file_path: pathlib._local.Path, artifact_type: ArtifactType) -> Any:", "funcdef": "def"}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"fullname": "jpyc_core_sdk.utils.resolve_artifacts_file_path", "modulename": "jpyc_core_sdk.utils", "qualname": "resolve_artifacts_file_path", "kind": "function", "doc": "

    Resolve the path of artifacts file from the specified contract type.

    \n\n
    Arguments:
    \n\n
      \n
    • contract_type (ContractType): Contract type
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Path: Absolute path of artifacts file

    \n
    \n", "signature": "(contract_type: ContractType) -> pathlib._local.Path:", "funcdef": "def"}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"fullname": "jpyc_core_sdk.utils.enumerate_supported_networks", "modulename": "jpyc_core_sdk.utils", "qualname": "enumerate_supported_networks", "kind": "function", "doc": "

    Enumerate all the supported networks.

    \n\n
    Returns:
    \n\n
    \n

    str: supported networks

    \n
    \n", "signature": "() -> str:", "funcdef": "def"}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"fullname": "jpyc_core_sdk.utils.get_default_rpc_endpoint", "modulename": "jpyc_core_sdk.utils", "qualname": "get_default_rpc_endpoint", "kind": "function", "doc": "

    Get the default RPC endpoint for the specified network.

    \n\n
    Arguments:
    \n\n
      \n
    • chain_name (ChainName, optional): Chain name
    • \n
    • network_name (str, optional): Network name
    • \n
    \n\n
    Returns:
    \n\n
    \n

    RpcEndpoint: RPC endpoint

    \n
    \n\n
    Raises:
    \n\n
      \n
    • NetworkNotSupported: If the specified network is not supported by the SDK
    • \n
    \n", "signature": "(\tchain_name: ChainName | None,\tnetwork_name: str | None) -> Annotated[str, AfterValidator(func=<function validate_rpc_endpoint at 0x107b4ad40>)]:", "funcdef": "def"}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"fullname": "jpyc_core_sdk.utils.SUPPORTED_CHAINS", "modulename": "jpyc_core_sdk.utils", "qualname": "SUPPORTED_CHAINS", "kind": "variable", "doc": "

    \n", "default_value": "{'ethereum': {'mainnet': {'id': 1, 'name': 'Ethereum Mainnet', 'rpc_endpoints': ['https://ethereum-rpc.publicnode.com']}, 'sepolia': {'id': 11155111, 'name': 'Ethereum Sepolia Testnet', 'rpc_endpoints': ['https://ethereum-sepolia-rpc.publicnode.com']}}, 'polygon': {'mainnet': {'id': 137, 'name': 'Polygon Mainnet', 'rpc_endpoints': ['https://polygon-rpc.com']}, 'amoy': {'id': 80002, 'name': 'Polygon Amoy Testnet', 'rpc_endpoints': ['https://rpc-amoy.polygon.technology']}}, 'gnosis': {'mainnet': {'id': 100, 'name': 'Gnosis Chain', 'rpc_endpoints': ['https://rpc.gnosischain.com']}, 'chiado': {'id': 10200, 'name': 'Gnosis Chiado Testnet', 'rpc_endpoints': ['https://rpc.chiadochain.net']}}, 'avalanche': {'mainnet': {'id': 43114, 'name': 'Avalanche C-Chain', 'rpc_endpoints': ['https://api.avax.network/ext/bc/C/rpc']}, 'fuji': {'id': 43113, 'name': 'Avalanche Fuji Testnet', 'rpc_endpoints': ['https://api.avax-test.network/ext/bc/C/rpc']}}, 'astar': {'mainnet': {'id': 592, 'name': 'Astar Network', 'rpc_endpoints': ['https://astar.public.blastapi.io']}}, 'shiden': {'mainnet': {'id': 336, 'name': 'Shiden Network', 'rpc_endpoints': ['https://shiden.public.blastapi.io']}}, 'localhost': {'devnet': {'id': 31337, 'name': 'Localhost Network', 'rpc_endpoints': ['http://127.0.0.1:8545/']}}}"}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"fullname": "jpyc_core_sdk.utils.POA_MIDDLEWARE", "modulename": "jpyc_core_sdk.utils", "qualname": "POA_MIDDLEWARE", "kind": "variable", "doc": "

    \n", "default_value": "'poa_middleware'"}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"fullname": "jpyc_core_sdk.utils.SIGN_MIDDLEWARE", "modulename": "jpyc_core_sdk.utils", "qualname": "SIGN_MIDDLEWARE", "kind": "variable", "doc": "

    \n", "default_value": "'sign_middleware'"}, "jpyc_core_sdk.utils.UINT_MIN": {"fullname": "jpyc_core_sdk.utils.UINT_MIN", "modulename": "jpyc_core_sdk.utils", "qualname": "UINT_MIN", "kind": "variable", "doc": "

    \n", "default_value": "0"}, "jpyc_core_sdk.utils.UINT256_MAX": {"fullname": "jpyc_core_sdk.utils.UINT256_MAX", "modulename": "jpyc_core_sdk.utils", "qualname": "UINT256_MAX", "kind": "variable", "doc": "

    \n", "default_value": "115792089237316195423570985008687907853269984665640564039457584007913129639935"}, "jpyc_core_sdk.utils.UINT8_MAX": {"fullname": "jpyc_core_sdk.utils.UINT8_MAX", "modulename": "jpyc_core_sdk.utils", "qualname": "UINT8_MAX", "kind": "variable", "doc": "

    \n", "default_value": "255"}, "jpyc_core_sdk.utils.remove_decimals": {"fullname": "jpyc_core_sdk.utils.remove_decimals", "modulename": "jpyc_core_sdk.utils", "qualname": "remove_decimals", "kind": "function", "doc": "

    Remove decimals.

    \n\n
    Arguments:
    \n\n
      \n
    • value (Uint256 | Decimal): Value in ether
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Uint256: Value in wei

    \n
    \n", "signature": "(\tvalue: Union[Annotated[int, AfterValidator(func=<function validate_uint256>)], decimal.Decimal]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x107b4ac00>)]:", "funcdef": "def"}, "jpyc_core_sdk.utils.restore_decimals": {"fullname": "jpyc_core_sdk.utils.restore_decimals", "modulename": "jpyc_core_sdk.utils", "qualname": "restore_decimals", "kind": "function", "doc": "

    Decorator to restore decimals.

    \n", "signature": "(func):", "funcdef": "def"}, "jpyc_core_sdk.utils.AccountNotInitialized": {"fullname": "jpyc_core_sdk.utils.AccountNotInitialized", "modulename": "jpyc_core_sdk.utils", "qualname": "AccountNotInitialized", "kind": "class", "doc": "

    Raised when account is not initialized or hoisted to web3 instance.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"fullname": "jpyc_core_sdk.utils.AccountNotInitialized.code", "modulename": "jpyc_core_sdk.utils", "qualname": "AccountNotInitialized.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "101"}, "jpyc_core_sdk.utils.InvalidBytes32": {"fullname": "jpyc_core_sdk.utils.InvalidBytes32", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidBytes32", "kind": "class", "doc": "

    Raised when the given byte string is not a valid bytes32.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"fullname": "jpyc_core_sdk.utils.InvalidBytes32.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidBytes32.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"fullname": "jpyc_core_sdk.utils.InvalidBytes32.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidBytes32.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "203"}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"fullname": "jpyc_core_sdk.utils.InvalidChecksumAddress", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidChecksumAddress", "kind": "class", "doc": "

    Raised when the given address is not a valid checksum address.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"fullname": "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidChecksumAddress.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"fullname": "jpyc_core_sdk.utils.InvalidChecksumAddress.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidChecksumAddress.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "200"}, "jpyc_core_sdk.utils.InvalidUint8": {"fullname": "jpyc_core_sdk.utils.InvalidUint8", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint8", "kind": "class", "doc": "

    Raised when the given integer is not a valid uint8.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"fullname": "jpyc_core_sdk.utils.InvalidUint8.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint8.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.InvalidUint8.code": {"fullname": "jpyc_core_sdk.utils.InvalidUint8.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint8.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "201"}, "jpyc_core_sdk.utils.InvalidUint256": {"fullname": "jpyc_core_sdk.utils.InvalidUint256", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint256", "kind": "class", "doc": "

    Raised when the given integer is not a valid uint256.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"fullname": "jpyc_core_sdk.utils.InvalidUint256.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint256.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.InvalidUint256.code": {"fullname": "jpyc_core_sdk.utils.InvalidUint256.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint256.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "202"}, "jpyc_core_sdk.utils.NetworkNotSupported": {"fullname": "jpyc_core_sdk.utils.NetworkNotSupported", "modulename": "jpyc_core_sdk.utils", "qualname": "NetworkNotSupported", "kind": "class", "doc": "

    Raised when the specified network is not supported by the SDK.

    \n\n
    Attributes:
    \n\n
      \n
    • chain_name (str): Chain name
    • \n
    • network_name (str): Network name
    • \n
    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"fullname": "jpyc_core_sdk.utils.NetworkNotSupported.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "NetworkNotSupported.__init__", "kind": "function", "doc": "

    \n", "signature": "(chain_name: ChainName, network_name: str)"}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"fullname": "jpyc_core_sdk.utils.NetworkNotSupported.code", "modulename": "jpyc_core_sdk.utils", "qualname": "NetworkNotSupported.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "100"}, "jpyc_core_sdk.utils.TransactionFailed": {"fullname": "jpyc_core_sdk.utils.TransactionFailed", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionFailed", "kind": "class", "doc": "

    Raised when transaction fails.

    \n\n
    Attributes:
    \n\n
      \n
    • message (str): Error message
    • \n
    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"fullname": "jpyc_core_sdk.utils.TransactionFailed.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionFailed.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.TransactionFailed.code": {"fullname": "jpyc_core_sdk.utils.TransactionFailed.code", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionFailed.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "301"}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"fullname": "jpyc_core_sdk.utils.TransactionSimulationFailed", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionSimulationFailed", "kind": "class", "doc": "

    Raised when transaction simulation fails.

    \n\n
    Attributes:
    \n\n
      \n
    • message (str): Error message
    • \n
    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"fullname": "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionSimulationFailed.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"fullname": "jpyc_core_sdk.utils.TransactionSimulationFailed.code", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionSimulationFailed.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "300"}, "jpyc_core_sdk.utils.ArtifactType": {"fullname": "jpyc_core_sdk.utils.ArtifactType", "modulename": "jpyc_core_sdk.utils", "qualname": "ArtifactType", "kind": "variable", "doc": "

    \n", "default_value": "Literal['abi', 'bytecode']"}, "jpyc_core_sdk.utils.ChainMetadata": {"fullname": "jpyc_core_sdk.utils.ChainMetadata", "modulename": "jpyc_core_sdk.utils", "qualname": "ChainMetadata", "kind": "variable", "doc": "

    \n", "default_value": "dict[ChainName, dict[str, jpyc_core_sdk.utils.types.NetworkMetadata]]"}, "jpyc_core_sdk.utils.ChainName": {"fullname": "jpyc_core_sdk.utils.ChainName", "modulename": "jpyc_core_sdk.utils", "qualname": "ChainName", "kind": "variable", "doc": "

    \n", "default_value": "Literal['ethereum', 'polygon', 'gnosis', 'avalanche', 'astar', 'shiden', 'localhost']"}, "jpyc_core_sdk.utils.ContractType": {"fullname": "jpyc_core_sdk.utils.ContractType", "modulename": "jpyc_core_sdk.utils", "qualname": "ContractType", "kind": "variable", "doc": "

    \n", "default_value": "Literal['jpyc', 'jpyc_prepaid']"}, "jpyc_core_sdk.utils.Bytes32": {"fullname": "jpyc_core_sdk.utils.Bytes32", "modulename": "jpyc_core_sdk.utils", "qualname": "Bytes32", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[str, AfterValidator(func=<function validate_bytes32>)]"}, "jpyc_core_sdk.utils.ChecksumAddress": {"fullname": "jpyc_core_sdk.utils.ChecksumAddress", "modulename": "jpyc_core_sdk.utils", "qualname": "ChecksumAddress", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[str, AfterValidator(func=<function validate_checksum_address>)]"}, "jpyc_core_sdk.utils.RpcEndpoint": {"fullname": "jpyc_core_sdk.utils.RpcEndpoint", "modulename": "jpyc_core_sdk.utils", "qualname": "RpcEndpoint", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[str, AfterValidator(func=<function validate_rpc_endpoint>)]"}, "jpyc_core_sdk.utils.Uint256": {"fullname": "jpyc_core_sdk.utils.Uint256", "modulename": "jpyc_core_sdk.utils", "qualname": "Uint256", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[int, AfterValidator(func=<function validate_uint256>)]"}, "jpyc_core_sdk.utils.Uint8": {"fullname": "jpyc_core_sdk.utils.Uint8", "modulename": "jpyc_core_sdk.utils", "qualname": "Uint8", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[int, AfterValidator(func=<function validate_uint8>)]"}}, "docInfo": {"jpyc_core_sdk": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.SdkClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 5}, "jpyc_core_sdk.SdkClient.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 165, "bases": 0, "doc": 189}, "jpyc_core_sdk.SdkClient.w3": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "jpyc_core_sdk.SdkClient.account": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "jpyc_core_sdk.SdkClient.set_default_provider": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 83}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 70, "bases": 0, "doc": 66}, "jpyc_core_sdk.SdkClient.set_account": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 85, "bases": 0, "doc": 102}, "jpyc_core_sdk.SdkClient.get_account_address": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 40}, "jpyc_core_sdk.JPYC": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 6}, "jpyc_core_sdk.JPYC.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 116}, "jpyc_core_sdk.JPYC.client": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.JPYC.contract": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.JPYC.is_minter": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 67}, "jpyc_core_sdk.JPYC.minter_allowance": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 9}, "jpyc_core_sdk.JPYC.total_supply": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 9}, "jpyc_core_sdk.JPYC.balance_of": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 9}, "jpyc_core_sdk.JPYC.allowance": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 9}, "jpyc_core_sdk.JPYC.nonces": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 97, "bases": 0, "doc": 65}, "jpyc_core_sdk.JPYC.configure_minter": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 142, "bases": 0, "doc": 115}, "jpyc_core_sdk.JPYC.mint": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 114}, "jpyc_core_sdk.JPYC.transfer": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 114}, "jpyc_core_sdk.JPYC.transfer_from": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 185, "bases": 0, "doc": 128}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 445, "bases": 0, "doc": 245}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 445, "bases": 0, "doc": 245}, "jpyc_core_sdk.JPYC.cancel_authorization": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 269, "bases": 0, "doc": 165}, "jpyc_core_sdk.JPYC.approve": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 112}, "jpyc_core_sdk.JPYC.increase_allowance": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 114}, "jpyc_core_sdk.JPYC.decrease_allowance": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 114}, "jpyc_core_sdk.JPYC.permit": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 356, "bases": 0, "doc": 208}, "jpyc_core_sdk.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.get_proxy_address": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 52}, "jpyc_core_sdk.utils.get_artifacts": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 55}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 46}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 20}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 84, "bases": 0, "doc": 75}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 379, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.UINT_MIN": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.UINT256_MAX": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.UINT8_MAX": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.remove_decimals": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 105, "bases": 0, "doc": 37}, "jpyc_core_sdk.utils.restore_decimals": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 7}, "jpyc_core_sdk.utils.AccountNotInitialized": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 14}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.InvalidBytes32": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 14}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 14}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.InvalidUint8": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 13}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.InvalidUint8.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.InvalidUint256": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 13}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.InvalidUint256.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.NetworkNotSupported": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 41}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.TransactionFailed": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 23}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.TransactionFailed.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 24}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.ArtifactType": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.ChainMetadata": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.ChainName": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 23, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.ContractType": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.Bytes32": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.ChecksumAddress": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.RpcEndpoint": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.Uint256": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.Uint8": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}}, "length": 77, "save": true}, "index": {"qualname": {"root": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 9, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 9}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 3}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.JPYC.total_supply": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 9}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}}}}}}}}}}, "s": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}, "w": {"3": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 3, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 4}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.client": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.contract": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ContractType": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 8}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 4}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 21}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 1, "t": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.total_supply": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.balance_of": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"jpyc_core_sdk.JPYC.balance_of": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 2}, "docs": {"jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 9, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk": {"tf": 1}, "jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.client": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.contract": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 77}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk": {"tf": 1}, "jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 77}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.contract": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ContractType": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 8}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.client": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk": {"tf": 1}, "jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 77, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 9}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 3}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.JPYC.total_supply": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 9}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}}}}}}}}}}, "s": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}, "w": {"3": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 3, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 4}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 4}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 1, "t": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.total_supply": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.balance_of": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"jpyc_core_sdk.JPYC.balance_of": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 46}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 2}, "docs": {"jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 1}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"0": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 2}, "1": {"0": {"0": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}}, "df": 2}, "1": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}}, "df": 1}, "2": {"0": {"0": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "1": {"1": {"5": {"5": {"1": {"1": {"1": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"7": {"9": {"2": {"0": {"8": {"9": {"2": {"3": {"7": {"3": {"1": {"6": {"1": {"9": {"5": {"4": {"2": {"3": {"5": {"7": {"0": {"9": {"8": {"5": {"0": {"0": {"8": {"6": {"8": {"7": {"9": {"0": {"7": {"8": {"5": {"3": {"2": {"6": {"9": {"9": {"8": {"4": {"6": {"6": {"5": {"6": {"4": {"0": {"5": {"6": {"4": {"0": {"3": {"9": {"4": {"5": {"7": {"5": {"8": {"4": {"0": {"0": {"7": {"9": {"1": {"3": {"1": {"2": {"9": {"6": {"3": {"9": {"9": {"3": {"5": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"7": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1, ":": {"8": {"5": {"4": {"5": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "2": {"0": {"0": {"docs": {"jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}}, "df": 1}, "1": {"docs": {"jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}}, "df": 1}, "2": {"docs": {"jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}}, "df": 1}, "3": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "5": {"5": {"docs": {"jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"0": {"0": {"docs": {"jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 1}, "1": {"docs": {"jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "1": {"3": {"3": {"7": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"6": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"3": {"1": {"1": {"3": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "4": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"9": {"2": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"0": {"0": {"0": {"2": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 9.591663046625438}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 11, "x": {"2": {"7": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 12.083045973594572}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 2}, "jpyc_core_sdk.utils.ChainName": {"tf": 3.7416573867739413}, "jpyc_core_sdk.utils.ContractType": {"tf": 2}}, "df": 6}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 3.3166247903554}}, "df": 1}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 2.8284271247461903}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 3.3166247903554}}, "df": 1}, "o": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 3.3166247903554}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}}, "df": 1, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 3.7416573867739413}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}}}}, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"1": {"2": {"7": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 2}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.ContractType": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 2}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 2}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}}, "x": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "i": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}, "n": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}}, "df": 1}}}}, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1.4142135623730951}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.Uint256": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}}}}}}}}}, "signature": {"root": {"0": {"docs": {}, "df": 0, "x": {"1": {"0": {"7": {"docs": {}, "df": 0, "b": {"4": {"docs": {}, "df": 0, "a": {"8": {"docs": {}, "df": 0, "e": {"0": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "docs": {}, "df": 0, "c": {"0": {"0": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "a": {"0": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 11}, "docs": {}, "df": 0}}, "d": {"4": {"0": {"docs": {"jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "3": {"9": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 11.313708498984761}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 6}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 7.3484692283495345}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 8.12403840463596}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 6.4031242374328485}, "jpyc_core_sdk.JPYC.__init__": {"tf": 8.12403840463596}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 6.782329983125268}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 4.242640687119285}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 4.242640687119285}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 4.242640687119285}, "jpyc_core_sdk.JPYC.allowance": {"tf": 4.242640687119285}, "jpyc_core_sdk.JPYC.nonces": {"tf": 8.602325267042627}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.mint": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.transfer": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 11.874342087037917}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 18.411952639521967}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 18.411952639521967}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 14.352700094407323}, "jpyc_core_sdk.JPYC.approve": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.permit": {"tf": 16.492422502470642}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 4.898979485566356}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 5.744562646538029}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 5}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 3}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 8}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 9}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 3.1622776601683795}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 4.47213595499958}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 3.605551275463989}}, "df": 37, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}}, "df": 4, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}}, "df": 14, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1.4142135623730951}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}}, "df": 4}, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}}, "df": 4}}}}}}}, "s": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.23606797749979}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 27}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 17}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4}}}}}}}, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 3}}, "v": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 3}}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}, "y": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 2, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}}, "df": 15}}}}}}, "t": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 15}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 20, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "v": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 7}}}}}, "g": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}}, "df": 4}}}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 13}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 2}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"3": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 6}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 13}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 12}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 1}}}}}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 10, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 10}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 10}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}}, "df": 2}}}}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}}, "df": 1}}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 4}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 4}}}}}}}}}}}, "doc": {"root": {"docs": {"jpyc_core_sdk": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 9.219544457292887}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.account": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 6.4031242374328485}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 5.830951894845301}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 7.0710678118654755}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 4.58257569495584}, "jpyc_core_sdk.JPYC": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.__init__": {"tf": 7.14142842854285}, "jpyc_core_sdk.JPYC.client": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.contract": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 6.164414002968976}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.nonces": {"tf": 6.244997998398398}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.mint": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.transfer": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 8.18535277187245}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 10.816653826391969}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 10.816653826391969}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 9.16515138991168}, "jpyc_core_sdk.JPYC.approve": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.permit": {"tf": 10.099504938362077}, "jpyc_core_sdk.utils": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 5.196152422706632}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 5.196152422706632}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 4.69041575982343}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 3.3166247903554}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 6.082762530298219}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 4.795831523312719}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 4.358898943540674}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 3.7416573867739413}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 3.7416573867739413}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainName": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ContractType": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.Uint256": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.Uint8": {"tf": 1.7320508075688772}}, "df": 77, "s": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 5, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 7, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}}, "df": 17}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 5}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 7}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}}, "df": 4}}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 12}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 2}, "jpyc_core_sdk.JPYC.client": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": null}, "jpyc_core_sdk.JPYC.__init__": {"tf": null}}, "df": 2}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}}, "df": 8}, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.contract": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 2}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.7320508075688772}}, "df": 5, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 3}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 8}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1.4142135623730951}}, "df": 4, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 15}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 9}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 13}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 2}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 3}}, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 2}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1.4142135623730951}}, "df": 19}}, "o": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 11, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 5}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.7320508075688772}}, "df": 8}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 13, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 11}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 11}}}}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 4, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 17, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 2}, "d": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 13}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 3, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 6}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 10}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 8}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "t": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 2}}}}}}, "f": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.mint": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.transfer": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.6457513110645907}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.6457513110645907}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.6457513110645907}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 20}, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.23606797749979}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 26, "d": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.client": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.23606797749979}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 25, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}}, "df": 6}, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.8284271247461903}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 2}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 2}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 2}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.23606797749979}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 2}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1.7320508075688772}}, "df": 5, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "s": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}}, "p": {"2": {"6": {"1": {"2": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 2}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 10}}}}}, "a": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 21, "m": {"docs": {}, "df": 0, "p": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}}, "df": 1}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 10}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 23}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 2}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.4142135623730951}}, "df": 2}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 2}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 2}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 16, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1.4142135623730951}}, "df": 17}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}, "y": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 3}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 7}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 3, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 2}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.7320508075688772}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 2.23606797749979}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.get_proxy_address": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}}, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 9}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}, "f": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.4142135623730951}}, "df": 22}, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 6}}}}}, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 4, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 2}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}}, "df": 5, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 3}}}}}}}}}}, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 23}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 5}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 19}, "d": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8}}}}}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 12}}}, "e": {"docs": {}, "df": 0, "b": {"3": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 5}, "docs": {}, "df": 0}, "i": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 2.23606797749979}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}}, "df": 1, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}}, "df": 14}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 3}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "v": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 4, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 20, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.7320508075688772}}, "df": 7}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2, "m": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}}, "df": 16}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 15}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 7}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 13}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.4142135623730951}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 13}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}}, "df": 5}, "docs": {}, "df": 0}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 3}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.TransactionFailed": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 2.449489742783178}}, "df": 2}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 4}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 2}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1.4142135623730951}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 11}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 1}}}}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough. From 7edd8f523555483f6b4740ca5290111f3c3dd919 Mon Sep 17 00:00:00 2001 From: SeiyaKobayashi Date: Sun, 2 Nov 2025 21:36:59 +0900 Subject: [PATCH 6/8] Update composite action 'install-packages' --- .github/actions/install-packages/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install-packages/action.yml b/.github/actions/install-packages/action.yml index e845bf2..4fcb8ab 100644 --- a/.github/actions/install-packages/action.yml +++ b/.github/actions/install-packages/action.yml @@ -9,7 +9,7 @@ runs: version: "0.7.6" - uses: actions/setup-python@v5 with: - python-version-file: "pyproject.toml" + python-version: '3.13' - name: Install packages shell: bash run: uv sync --locked --all-extras --dev From d6ac7dc9b1b882546d80f2519eff1f990ec722ad Mon Sep 17 00:00:00 2001 From: SeiyaKobayashi Date: Sun, 2 Nov 2025 22:05:50 +0900 Subject: [PATCH 7/8] Update 'README's --- README-jp.md | 4 ++-- packages/core/README-jp.md | 2 +- packages/core/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README-jp.md b/README-jp.md index d75fe6f..5c4173d 100644 --- a/README-jp.md +++ b/README-jp.md @@ -9,9 +9,9 @@ 各 SDK に関する詳細は、それぞれの `README` を参照ください。 -| SDK 名 | `README` | +| SDK名 | `README` | | --------------: | :----------------------------------------- | -| `jpyc-core-sdk` | [packages/core](./packages/core/README.md) | +| `jpyc-core-sdk` | [packages/core](./packages/core/README-jp.md) | ## ⬇️ インストール diff --git a/packages/core/README-jp.md b/packages/core/README-jp.md index 05f32a4..3ecc0af 100644 --- a/packages/core/README-jp.md +++ b/packages/core/README-jp.md @@ -7,7 +7,7 @@ JPYC Python SDK は、各ネットワーク上にデプロイされた JPYC コ ## ✅ 対応しているコントラクト種別・ネットワーク -この SDK は2025年10月現在、以下のコントラクトバージョンとネットワークに対応しています。SDK クライアントを設定する際は、以下のいずれかのチェーン名・ネットワーク名の組み合わせを指定してください。 +この SDK は2025年10月現在、以下のコントラクト種別とネットワークに対応しています。SDK クライアントを設定する際は、以下のいずれかのチェーン名・ネットワーク名の組み合わせを指定してください。 > [!NOTE] > 以下のネットワーク以外にも、ローカルネットワーク(チェーン名: `localhost`・ネットワーク名: `devnet`)にデプロイした JPYC コントラクトのアドレスを設定して、ローカル環境での開発や検証に使うこともできます。 diff --git a/packages/core/README.md b/packages/core/README.md index f8da914..99cb65d 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -7,7 +7,7 @@ Python SDK to interact with [the JPYC core contracts](https://github.com/jcam1/J ## ✅ Supported Contract Types & Networks -The SDK supports the following contract types and networks as of October 2025. Please use one of the combinations of chain & network names when configuring the SDK clients. +The SDK supports the following contract types and networks as of October 2025. Please use one of the combinations of chain & network names when configuring the SDK client. > [!NOTE] > You could also configure your locally-deployed contracts for local development and/or testing. For chain & network names, please use `localhost`-`devnet` pair. From e28059fbfbfa613d9f1859337d1e303befc9dda2 Mon Sep 17 00:00:00 2001 From: SeiyaKobayashi Date: Sun, 2 Nov 2025 22:06:18 +0900 Subject: [PATCH 8/8] Update dev docs for 'core' sdk --- docs/core/jpyc_core_sdk.html | 26 +++++++++++++------------- docs/core/jpyc_core_sdk/utils.html | 4 ++-- docs/core/search.js | 2 +- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/core/jpyc_core_sdk.html b/docs/core/jpyc_core_sdk.html index 7a80f8c..58cbf04 100644 --- a/docs/core/jpyc_core_sdk.html +++ b/docs/core/jpyc_core_sdk.html @@ -582,7 +582,7 @@
    Raises:
    def - get_account_address( self) -> Annotated[str, AfterValidator(func=<function validate_checksum_address at 0x107b4a8e0>)]: + get_account_address( self) -> Annotated[str, AfterValidator(func=<function validate_checksum_address at 0x1040df740>)]: @@ -1336,7 +1336,7 @@
    Raises:
    @validate_call
    def - nonces( self, owner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x107b4ac00>)]: + nonces( self, owner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x1040dfa60>)]: @@ -1377,7 +1377,7 @@
    Raises:
    @validate_call
    def - configure_minter( self, minter: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], minter_allowed_amount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]: + configure_minter( self, minter: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], minter_allowed_amount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]: @@ -1433,7 +1433,7 @@
    Raises:
    @validate_call
    def - mint( self, to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], amount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]: + mint( self, to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], amount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]: @@ -1487,7 +1487,7 @@
    Raises:
    @validate_call
    def - transfer( self, to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]: + transfer( self, to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]: @@ -1541,7 +1541,7 @@
    Raises:
    @validate_call
    def - transfer_from( self, from_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]: + transfer_from( self, from_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]: @@ -1599,7 +1599,7 @@
    Raises:
    @validate_call
    def - transfer_with_authorization( self, from_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)], nonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]: + transfer_with_authorization( self, from_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)], nonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]: @@ -1680,7 +1680,7 @@
    Raises:
    @validate_call
    def - receive_with_authorization( self, from_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)], nonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]: + receive_with_authorization( self, from_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], to: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)], valid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)], nonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]: @@ -1761,7 +1761,7 @@
    Raises:
    @validate_call
    def - cancel_authorization( self, authorizer: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], nonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]: + cancel_authorization( self, authorizer: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], nonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]: @@ -1829,7 +1829,7 @@
    Raises:
    @validate_call
    def - approve( self, spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]: + approve( self, spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]: @@ -1883,7 +1883,7 @@
    Raises:
    @validate_call
    def - increase_allowance( self, spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], increment: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]: + increase_allowance( self, spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], increment: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]: @@ -1939,7 +1939,7 @@
    Raises:
    @validate_call
    def - decrease_allowance( self, spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], decrement: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]: + decrease_allowance( self, spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], decrement: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]: @@ -1995,7 +1995,7 @@
    Raises:
    @validate_call
    def - permit( self, owner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)], deadline: Annotated[int, AfterValidator(func=<function validate_uint256>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]: + permit( self, owner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], spender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)], value: Annotated[int, AfterValidator(func=<function validate_uint256>)], deadline: Annotated[int, AfterValidator(func=<function validate_uint256>)], v: Annotated[int, AfterValidator(func=<function validate_uint8>)], r: Annotated[str, AfterValidator(func=<function validate_bytes32>)], s: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]: diff --git a/docs/core/jpyc_core_sdk/utils.html b/docs/core/jpyc_core_sdk/utils.html index 876b2c4..f772445 100644 --- a/docs/core/jpyc_core_sdk/utils.html +++ b/docs/core/jpyc_core_sdk/utils.html @@ -471,7 +471,7 @@
    Returns:
    def - get_default_rpc_endpoint( chain_name: ChainName | None, network_name: str | None) -> Annotated[str, AfterValidator(func=<function validate_rpc_endpoint at 0x107b4ad40>)]: + get_default_rpc_endpoint( chain_name: ChainName | None, network_name: str | None) -> Annotated[str, AfterValidator(func=<function validate_rpc_endpoint at 0x1040dfba0>)]: @@ -601,7 +601,7 @@
    Raises:
    def - remove_decimals( value: Union[Annotated[int, AfterValidator(func=<function validate_uint256>)], decimal.Decimal]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x107b4ac00>)]: + remove_decimals( value: Union[Annotated[int, AfterValidator(func=<function validate_uint256>)], decimal.Decimal]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x1040dfa60>)]: diff --git a/docs/core/search.js b/docs/core/search.js index 56f0b19..bc21708 100644 --- a/docs/core/search.js +++ b/docs/core/search.js @@ -1,6 +1,6 @@ window.pdocSearch = (function(){ /** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[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.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o

    \n"}, "jpyc_core_sdk.SdkClient": {"fullname": "jpyc_core_sdk.SdkClient", "modulename": "jpyc_core_sdk", "qualname": "SdkClient", "kind": "class", "doc": "

    SDK client.

    \n", "bases": "jpyc_core_sdk.interfaces.client.ISdkClient"}, "jpyc_core_sdk.SdkClient.__init__": {"fullname": "jpyc_core_sdk.SdkClient.__init__", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.__init__", "kind": "function", "doc": "

    Constructor that initializes SDK client.

    \n\n
    Notes:
    \n\n
    \n
      \n
    • Either chain_name & network_name parameters or rpc_endpoint parameter are required.
    • \n
    • This constructor prioritizes rpc_endpoint parameter over chain_name & network_name parameters when configuring rpc_endpoint.
    • \n
    \n
    \n\n
    Arguments:
    \n\n
      \n
    • chain_name (str, optional): Chain name
    • \n
    • network_name (str, optional): Network name
    • \n
    • rpc_endpoint (RpcEndpoint, optional): RPC endpoint
    • \n
    • private_key (Bytes32, optional): private key of EOA
    • \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidBytes32: If the supplied private_key is not in a valid form
    • \n
    • InvalidRpcEndpoint: If the supplied rpc_endpoint is not in a valid form
    • \n
    • NetworkNotSupported: If the specified network is not supported by the SDK
    • \n
    • ValidationError: If pydantic validation fails
    • \n
    \n", "signature": "(\tchain_name: ChainName | None = None,\tnetwork_name: str | None = None,\trpc_endpoint: Optional[Annotated[str, AfterValidator(func=<function validate_rpc_endpoint>)]] = None,\tprivate_key: Optional[Annotated[str, AfterValidator(func=<function validate_bytes32>)]] = None)"}, "jpyc_core_sdk.SdkClient.w3": {"fullname": "jpyc_core_sdk.SdkClient.w3", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.w3", "kind": "variable", "doc": "

    Web3: Configured web3 instance

    \n"}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"fullname": "jpyc_core_sdk.SdkClient.rpc_endpoint", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.rpc_endpoint", "kind": "variable", "doc": "

    str: RPC endpoint

    \n"}, "jpyc_core_sdk.SdkClient.account": {"fullname": "jpyc_core_sdk.SdkClient.account", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.account", "kind": "variable", "doc": "

    LocalAccount | None: Account instance

    \n"}, "jpyc_core_sdk.SdkClient.set_default_provider": {"fullname": "jpyc_core_sdk.SdkClient.set_default_provider", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.set_default_provider", "kind": "function", "doc": "

    Set provider using one of the default RPC endpoints.

    \n\n
    Arguments:
    \n\n
      \n
    • chain_name (str): Chain name
    • \n
    • network_name (str): Network name
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Web3: Configured web3 instance

    \n
    \n\n
    Raises:
    \n\n
      \n
    • NetworkNotSupported: If the specified network is not supported by the SDK
    • \n
    • ValidationError: If pydantic validation fails
    • \n
    \n", "signature": "(self, chain_name: ChainName, network_name: str) -> web3.main.Web3:", "funcdef": "def"}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"fullname": "jpyc_core_sdk.SdkClient.set_custom_provider", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.set_custom_provider", "kind": "function", "doc": "

    Set provider using a custom RPC endpoint.

    \n\n
    Arguments:
    \n\n
      \n
    • rpc_endpoint (RpcEndpoint): Custom RPC endpoint
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Web3: Configured web3 instance

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidRpcEndpoint: If the supplied rpc_endpoint is not in a valid form
    • \n
    \n", "signature": "(\tself,\trpc_endpoint: Annotated[str, AfterValidator(func=<function validate_rpc_endpoint>)]) -> web3.main.Web3:", "funcdef": "def"}, "jpyc_core_sdk.SdkClient.set_account": {"fullname": "jpyc_core_sdk.SdkClient.set_account", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.set_account", "kind": "function", "doc": "

    Set account with a private key.

    \n\n
    Notes:
    \n\n
    \n

    If private_key parameter is set to None, this method removes account from the configured web3 instance.

    \n
    \n\n
    Arguments:
    \n\n
      \n
    • private_key (Bytes32, optional): Private key of account
    • \n
    \n\n
    Returns:
    \n\n
    \n

    LocalAccount | None: Configured account instance

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidBytes32: If the supplied private_key is not in a valid form
    • \n
    \n", "signature": "(\tself,\tprivate_key: Optional[Annotated[str, AfterValidator(func=<function validate_bytes32>)]]) -> eth_account.signers.local.LocalAccount | None:", "funcdef": "def"}, "jpyc_core_sdk.SdkClient.get_account_address": {"fullname": "jpyc_core_sdk.SdkClient.get_account_address", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.get_account_address", "kind": "function", "doc": "

    Get address of the configured account.

    \n\n
    Returns:
    \n\n
    \n

    ChecksumAddress: Public address of account

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    \n", "signature": "(\tself) -> Annotated[str, AfterValidator(func=<function validate_checksum_address at 0x107b4a8e0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC": {"fullname": "jpyc_core_sdk.JPYC", "modulename": "jpyc_core_sdk", "qualname": "JPYC", "kind": "class", "doc": "

    Implementation of IJPYC.

    \n", "bases": "jpyc_core_sdk.interfaces.jpyc.IJPYC"}, "jpyc_core_sdk.JPYC.__init__": {"fullname": "jpyc_core_sdk.JPYC.__init__", "modulename": "jpyc_core_sdk", "qualname": "JPYC.__init__", "kind": "function", "doc": "

    Constructor that initializes a JPYC client.

    \n\n
    Notes:
    \n\n
    \n
      \n
    • If client parameter is configured to use localhost network, this deploys JPYC contracts to localhost network, initializes it, and sets its address to address attribute.
    • \n
    • If contract_address is supplied, this configures contract instance with that address.
    • \n
    \n
    \n\n
    Arguments:
    \n\n
      \n
    • client (SdkClient): Configured SDK client
    • \n
    • contract_type (ContractType): Contract type (jpyc or jpyc_prepaid)
    • \n
    • contract_address (EthChecksumAddress, optional): Contract address
    • \n
    \n", "signature": "(\tclient: jpyc_core_sdk.client.SdkClient,\tcontract_type: ContractType = 'jpyc',\tcontract_address: Optional[eth_typing.evm.ChecksumAddress] = None)"}, "jpyc_core_sdk.JPYC.client": {"fullname": "jpyc_core_sdk.JPYC.client", "modulename": "jpyc_core_sdk", "qualname": "JPYC.client", "kind": "variable", "doc": "

    ISdkClient: Configured SDK client

    \n"}, "jpyc_core_sdk.JPYC.contract": {"fullname": "jpyc_core_sdk.JPYC.contract", "modulename": "jpyc_core_sdk", "qualname": "JPYC.contract", "kind": "variable", "doc": "

    Contract: Configured contract instance

    \n"}, "jpyc_core_sdk.JPYC.is_minter": {"fullname": "jpyc_core_sdk.JPYC.is_minter", "modulename": "jpyc_core_sdk", "qualname": "JPYC.is_minter", "kind": "function", "doc": "

    Call isMinter function.

    \n\n
    Arguments:
    \n\n
      \n
    • account (ChecksumAddress): Account address
    • \n
    \n\n
    Returns:
    \n\n
    \n

    bool: True if account is a minter, false otherwise

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidChecksumAddress: If supplied account is not in a valid form
    • \n
    \n", "signature": "(\tself,\taccount: Annotated[str, AfterValidator(func=<function validate_checksum_address>)]) -> bool:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.minter_allowance": {"fullname": "jpyc_core_sdk.JPYC.minter_allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.minter_allowance", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, "jpyc_core_sdk.JPYC.total_supply": {"fullname": "jpyc_core_sdk.JPYC.total_supply", "modulename": "jpyc_core_sdk", "qualname": "JPYC.total_supply", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, "jpyc_core_sdk.JPYC.balance_of": {"fullname": "jpyc_core_sdk.JPYC.balance_of", "modulename": "jpyc_core_sdk", "qualname": "JPYC.balance_of", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, "jpyc_core_sdk.JPYC.allowance": {"fullname": "jpyc_core_sdk.JPYC.allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.allowance", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, "jpyc_core_sdk.JPYC.nonces": {"fullname": "jpyc_core_sdk.JPYC.nonces", "modulename": "jpyc_core_sdk", "qualname": "JPYC.nonces", "kind": "function", "doc": "

    Call nonces function.

    \n\n
    Arguments:
    \n\n
      \n
    • owner (ChecksumAddress): Owner address
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Uint256: Nonce for EIP2612's permit.

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidChecksumAddress: If supplied owner is not in a valid form
    • \n
    \n", "signature": "(\tself,\towner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x107b4ac00>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.configure_minter": {"fullname": "jpyc_core_sdk.JPYC.configure_minter", "modulename": "jpyc_core_sdk", "qualname": "JPYC.configure_minter", "kind": "function", "doc": "

    Call configureMinter function.

    \n\n
    Arguments:
    \n\n
      \n
    • minter (ChecksumAddress): Minter address
    • \n
    • minter_allowed_amount (Uint256): Minter allowance
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied minter is not in a valid form
    • \n
    • InvalidUint256: If supplied minter_allowed_amount is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tminter: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tminter_allowed_amount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.mint": {"fullname": "jpyc_core_sdk.JPYC.mint", "modulename": "jpyc_core_sdk", "qualname": "JPYC.mint", "kind": "function", "doc": "

    Call mint function.

    \n\n
    Arguments:
    \n\n
      \n
    • to (ChecksumAddress): Receiver address
    • \n
    • amount (Uint256): Amount of tokens to mint
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied to is not in a valid form
    • \n
    • InvalidUint256: If supplied amount is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tamount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.transfer": {"fullname": "jpyc_core_sdk.JPYC.transfer", "modulename": "jpyc_core_sdk", "qualname": "JPYC.transfer", "kind": "function", "doc": "

    Call transfer function.

    \n\n
    Arguments:
    \n\n
      \n
    • to (ChecksumAddress): Receiver address
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied to is not in a valid form
    • \n
    • InvalidUint256: If supplied value is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.transfer_from": {"fullname": "jpyc_core_sdk.JPYC.transfer_from", "modulename": "jpyc_core_sdk", "qualname": "JPYC.transfer_from", "kind": "function", "doc": "

    Call transferFrom function.

    \n\n
    Arguments:
    \n\n
      \n
    • from_ (ChecksumAddress): Owner address
    • \n
    • to (ChecksumAddress): Receiver address
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied from_ or to is not in a valid form
    • \n
    • InvalidUint256: If supplied value is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tfrom_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"fullname": "jpyc_core_sdk.JPYC.transfer_with_authorization", "modulename": "jpyc_core_sdk", "qualname": "JPYC.transfer_with_authorization", "kind": "function", "doc": "

    Call transferWithAuthorization function.

    \n\n
    Arguments:
    \n\n
      \n
    • from_ (ChecksumAddress): Owner address
    • \n
    • to (ChecksumAddress): Receiver allowance
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    • valid_after (Uint256): Unix time when transaction becomes valid
    • \n
    • valid_before (Uint256): Unix time when transaction becomes invalid
    • \n
    • nonce (Bytes32): Unique nonce
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied nonce or r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied from_ or to is not in a valid form
    • \n
    • InvalidUint256: If supplied value or valid_after or valid_before is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tfrom_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tnonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"fullname": "jpyc_core_sdk.JPYC.receive_with_authorization", "modulename": "jpyc_core_sdk", "qualname": "JPYC.receive_with_authorization", "kind": "function", "doc": "

    Call receiveWithAuthorization function.

    \n\n
    Arguments:
    \n\n
      \n
    • from_ (ChecksumAddress): Owner address
    • \n
    • to (ChecksumAddress): Receiver allowance
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    • valid_after (Uint256): Unix time when transaction becomes valid
    • \n
    • valid_before (Uint256): Unix time when transaction becomes invalid
    • \n
    • nonce (Bytes32): Unique nonce
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied nonce or r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied from_ or to is not in a valid form
    • \n
    • InvalidUint256: If supplied value or valid_after or valid_before is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tfrom_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tnonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.cancel_authorization": {"fullname": "jpyc_core_sdk.JPYC.cancel_authorization", "modulename": "jpyc_core_sdk", "qualname": "JPYC.cancel_authorization", "kind": "function", "doc": "

    Call cancelAuthorization function.

    \n\n
    Arguments:
    \n\n
      \n
    • authorizer (ChecksumAddress): Owner address
    • \n
    • nonce (Bytes32): Unique nonce
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied nonce or r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied authorizer is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tauthorizer: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tnonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.approve": {"fullname": "jpyc_core_sdk.JPYC.approve", "modulename": "jpyc_core_sdk", "qualname": "JPYC.approve", "kind": "function", "doc": "

    Call approve function.

    \n\n
    Arguments:
    \n\n
      \n
    • spender (ChecksumAddress): Spender address
    • \n
    • value (Uint256): Amount of allowance
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied spender is not in a valid form
    • \n
    • InvalidUint256: If supplied value is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.increase_allowance": {"fullname": "jpyc_core_sdk.JPYC.increase_allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.increase_allowance", "kind": "function", "doc": "

    Call increaseAllowance function.

    \n\n
    Arguments:
    \n\n
      \n
    • spender (ChecksumAddress): Spender address
    • \n
    • increment (Uint256): Amount of allowance to increase
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied spender is not in a valid form
    • \n
    • InvalidUint256: If supplied increment is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tincrement: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.decrease_allowance": {"fullname": "jpyc_core_sdk.JPYC.decrease_allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.decrease_allowance", "kind": "function", "doc": "

    Call decreaseAllowance function.

    \n\n
    Arguments:
    \n\n
      \n
    • spender (ChecksumAddress): Spender address
    • \n
    • decrement (Uint256): Amount of allowance to decrease
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied spender is not in a valid form
    • \n
    • InvalidUint256: If supplied decrement is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tdecrement: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.permit": {"fullname": "jpyc_core_sdk.JPYC.permit", "modulename": "jpyc_core_sdk", "qualname": "JPYC.permit", "kind": "function", "doc": "

    Call permit function.

    \n\n
    Arguments:
    \n\n
      \n
    • owner (ChecksumAddress): Owner address
    • \n
    • spender (ChecksumAddress): Spender address
    • \n
    • value (Uint256): Amount of allowance
    • \n
    • deadline (Uint256): Unix time when transaction becomes invalid
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied owner or spender is not in a valid form
    • \n
    • InvalidUint256: If supplied value or deadline is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\towner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tdeadline: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x107b4aca0>)]:", "funcdef": "def"}, "jpyc_core_sdk.utils": {"fullname": "jpyc_core_sdk.utils", "modulename": "jpyc_core_sdk.utils", "kind": "module", "doc": "

    \n"}, "jpyc_core_sdk.utils.get_proxy_address": {"fullname": "jpyc_core_sdk.utils.get_proxy_address", "modulename": "jpyc_core_sdk.utils", "qualname": "get_proxy_address", "kind": "function", "doc": "

    Get proxy address from the specified contract type.

    \n\n
    Arguments:
    \n\n
      \n
    • contract_type (ContractType): Contract type (jpyc or jpyc_prepaid)
    • \n
    \n\n
    Returns:
    \n\n
    \n

    ChecksumAddress: Checksum address of proxy contract

    \n
    \n", "signature": "(contract_type: ContractType) -> eth_typing.evm.ChecksumAddress:", "funcdef": "def"}, "jpyc_core_sdk.utils.get_artifacts": {"fullname": "jpyc_core_sdk.utils.get_artifacts", "modulename": "jpyc_core_sdk.utils", "qualname": "get_artifacts", "kind": "function", "doc": "

    Get contract artifacts from the specified file path.

    \n\n
    Arguments:
    \n\n
      \n
    • file_path (Path): absolute path of artifacts file
    • \n
    • artifact_type (ArtifactType): type of artifacts
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Any: Artifacts of contracts

    \n
    \n", "signature": "(file_path: pathlib._local.Path, artifact_type: ArtifactType) -> Any:", "funcdef": "def"}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"fullname": "jpyc_core_sdk.utils.resolve_artifacts_file_path", "modulename": "jpyc_core_sdk.utils", "qualname": "resolve_artifacts_file_path", "kind": "function", "doc": "

    Resolve the path of artifacts file from the specified contract type.

    \n\n
    Arguments:
    \n\n
      \n
    • contract_type (ContractType): Contract type
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Path: Absolute path of artifacts file

    \n
    \n", "signature": "(contract_type: ContractType) -> pathlib._local.Path:", "funcdef": "def"}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"fullname": "jpyc_core_sdk.utils.enumerate_supported_networks", "modulename": "jpyc_core_sdk.utils", "qualname": "enumerate_supported_networks", "kind": "function", "doc": "

    Enumerate all the supported networks.

    \n\n
    Returns:
    \n\n
    \n

    str: supported networks

    \n
    \n", "signature": "() -> str:", "funcdef": "def"}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"fullname": "jpyc_core_sdk.utils.get_default_rpc_endpoint", "modulename": "jpyc_core_sdk.utils", "qualname": "get_default_rpc_endpoint", "kind": "function", "doc": "

    Get the default RPC endpoint for the specified network.

    \n\n
    Arguments:
    \n\n
      \n
    • chain_name (ChainName, optional): Chain name
    • \n
    • network_name (str, optional): Network name
    • \n
    \n\n
    Returns:
    \n\n
    \n

    RpcEndpoint: RPC endpoint

    \n
    \n\n
    Raises:
    \n\n
      \n
    • NetworkNotSupported: If the specified network is not supported by the SDK
    • \n
    \n", "signature": "(\tchain_name: ChainName | None,\tnetwork_name: str | None) -> Annotated[str, AfterValidator(func=<function validate_rpc_endpoint at 0x107b4ad40>)]:", "funcdef": "def"}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"fullname": "jpyc_core_sdk.utils.SUPPORTED_CHAINS", "modulename": "jpyc_core_sdk.utils", "qualname": "SUPPORTED_CHAINS", "kind": "variable", "doc": "

    \n", "default_value": "{'ethereum': {'mainnet': {'id': 1, 'name': 'Ethereum Mainnet', 'rpc_endpoints': ['https://ethereum-rpc.publicnode.com']}, 'sepolia': {'id': 11155111, 'name': 'Ethereum Sepolia Testnet', 'rpc_endpoints': ['https://ethereum-sepolia-rpc.publicnode.com']}}, 'polygon': {'mainnet': {'id': 137, 'name': 'Polygon Mainnet', 'rpc_endpoints': ['https://polygon-rpc.com']}, 'amoy': {'id': 80002, 'name': 'Polygon Amoy Testnet', 'rpc_endpoints': ['https://rpc-amoy.polygon.technology']}}, 'gnosis': {'mainnet': {'id': 100, 'name': 'Gnosis Chain', 'rpc_endpoints': ['https://rpc.gnosischain.com']}, 'chiado': {'id': 10200, 'name': 'Gnosis Chiado Testnet', 'rpc_endpoints': ['https://rpc.chiadochain.net']}}, 'avalanche': {'mainnet': {'id': 43114, 'name': 'Avalanche C-Chain', 'rpc_endpoints': ['https://api.avax.network/ext/bc/C/rpc']}, 'fuji': {'id': 43113, 'name': 'Avalanche Fuji Testnet', 'rpc_endpoints': ['https://api.avax-test.network/ext/bc/C/rpc']}}, 'astar': {'mainnet': {'id': 592, 'name': 'Astar Network', 'rpc_endpoints': ['https://astar.public.blastapi.io']}}, 'shiden': {'mainnet': {'id': 336, 'name': 'Shiden Network', 'rpc_endpoints': ['https://shiden.public.blastapi.io']}}, 'localhost': {'devnet': {'id': 31337, 'name': 'Localhost Network', 'rpc_endpoints': ['http://127.0.0.1:8545/']}}}"}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"fullname": "jpyc_core_sdk.utils.POA_MIDDLEWARE", "modulename": "jpyc_core_sdk.utils", "qualname": "POA_MIDDLEWARE", "kind": "variable", "doc": "

    \n", "default_value": "'poa_middleware'"}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"fullname": "jpyc_core_sdk.utils.SIGN_MIDDLEWARE", "modulename": "jpyc_core_sdk.utils", "qualname": "SIGN_MIDDLEWARE", "kind": "variable", "doc": "

    \n", "default_value": "'sign_middleware'"}, "jpyc_core_sdk.utils.UINT_MIN": {"fullname": "jpyc_core_sdk.utils.UINT_MIN", "modulename": "jpyc_core_sdk.utils", "qualname": "UINT_MIN", "kind": "variable", "doc": "

    \n", "default_value": "0"}, "jpyc_core_sdk.utils.UINT256_MAX": {"fullname": "jpyc_core_sdk.utils.UINT256_MAX", "modulename": "jpyc_core_sdk.utils", "qualname": "UINT256_MAX", "kind": "variable", "doc": "

    \n", "default_value": "115792089237316195423570985008687907853269984665640564039457584007913129639935"}, "jpyc_core_sdk.utils.UINT8_MAX": {"fullname": "jpyc_core_sdk.utils.UINT8_MAX", "modulename": "jpyc_core_sdk.utils", "qualname": "UINT8_MAX", "kind": "variable", "doc": "

    \n", "default_value": "255"}, "jpyc_core_sdk.utils.remove_decimals": {"fullname": "jpyc_core_sdk.utils.remove_decimals", "modulename": "jpyc_core_sdk.utils", "qualname": "remove_decimals", "kind": "function", "doc": "

    Remove decimals.

    \n\n
    Arguments:
    \n\n
      \n
    • value (Uint256 | Decimal): Value in ether
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Uint256: Value in wei

    \n
    \n", "signature": "(\tvalue: Union[Annotated[int, AfterValidator(func=<function validate_uint256>)], decimal.Decimal]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x107b4ac00>)]:", "funcdef": "def"}, "jpyc_core_sdk.utils.restore_decimals": {"fullname": "jpyc_core_sdk.utils.restore_decimals", "modulename": "jpyc_core_sdk.utils", "qualname": "restore_decimals", "kind": "function", "doc": "

    Decorator to restore decimals.

    \n", "signature": "(func):", "funcdef": "def"}, "jpyc_core_sdk.utils.AccountNotInitialized": {"fullname": "jpyc_core_sdk.utils.AccountNotInitialized", "modulename": "jpyc_core_sdk.utils", "qualname": "AccountNotInitialized", "kind": "class", "doc": "

    Raised when account is not initialized or hoisted to web3 instance.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"fullname": "jpyc_core_sdk.utils.AccountNotInitialized.code", "modulename": "jpyc_core_sdk.utils", "qualname": "AccountNotInitialized.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "101"}, "jpyc_core_sdk.utils.InvalidBytes32": {"fullname": "jpyc_core_sdk.utils.InvalidBytes32", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidBytes32", "kind": "class", "doc": "

    Raised when the given byte string is not a valid bytes32.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"fullname": "jpyc_core_sdk.utils.InvalidBytes32.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidBytes32.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"fullname": "jpyc_core_sdk.utils.InvalidBytes32.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidBytes32.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "203"}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"fullname": "jpyc_core_sdk.utils.InvalidChecksumAddress", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidChecksumAddress", "kind": "class", "doc": "

    Raised when the given address is not a valid checksum address.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"fullname": "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidChecksumAddress.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"fullname": "jpyc_core_sdk.utils.InvalidChecksumAddress.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidChecksumAddress.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "200"}, "jpyc_core_sdk.utils.InvalidUint8": {"fullname": "jpyc_core_sdk.utils.InvalidUint8", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint8", "kind": "class", "doc": "

    Raised when the given integer is not a valid uint8.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"fullname": "jpyc_core_sdk.utils.InvalidUint8.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint8.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.InvalidUint8.code": {"fullname": "jpyc_core_sdk.utils.InvalidUint8.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint8.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "201"}, "jpyc_core_sdk.utils.InvalidUint256": {"fullname": "jpyc_core_sdk.utils.InvalidUint256", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint256", "kind": "class", "doc": "

    Raised when the given integer is not a valid uint256.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"fullname": "jpyc_core_sdk.utils.InvalidUint256.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint256.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.InvalidUint256.code": {"fullname": "jpyc_core_sdk.utils.InvalidUint256.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint256.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "202"}, "jpyc_core_sdk.utils.NetworkNotSupported": {"fullname": "jpyc_core_sdk.utils.NetworkNotSupported", "modulename": "jpyc_core_sdk.utils", "qualname": "NetworkNotSupported", "kind": "class", "doc": "

    Raised when the specified network is not supported by the SDK.

    \n\n
    Attributes:
    \n\n
      \n
    • chain_name (str): Chain name
    • \n
    • network_name (str): Network name
    • \n
    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"fullname": "jpyc_core_sdk.utils.NetworkNotSupported.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "NetworkNotSupported.__init__", "kind": "function", "doc": "

    \n", "signature": "(chain_name: ChainName, network_name: str)"}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"fullname": "jpyc_core_sdk.utils.NetworkNotSupported.code", "modulename": "jpyc_core_sdk.utils", "qualname": "NetworkNotSupported.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "100"}, "jpyc_core_sdk.utils.TransactionFailed": {"fullname": "jpyc_core_sdk.utils.TransactionFailed", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionFailed", "kind": "class", "doc": "

    Raised when transaction fails.

    \n\n
    Attributes:
    \n\n
      \n
    • message (str): Error message
    • \n
    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"fullname": "jpyc_core_sdk.utils.TransactionFailed.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionFailed.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.TransactionFailed.code": {"fullname": "jpyc_core_sdk.utils.TransactionFailed.code", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionFailed.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "301"}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"fullname": "jpyc_core_sdk.utils.TransactionSimulationFailed", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionSimulationFailed", "kind": "class", "doc": "

    Raised when transaction simulation fails.

    \n\n
    Attributes:
    \n\n
      \n
    • message (str): Error message
    • \n
    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"fullname": "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionSimulationFailed.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"fullname": "jpyc_core_sdk.utils.TransactionSimulationFailed.code", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionSimulationFailed.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "300"}, "jpyc_core_sdk.utils.ArtifactType": {"fullname": "jpyc_core_sdk.utils.ArtifactType", "modulename": "jpyc_core_sdk.utils", "qualname": "ArtifactType", "kind": "variable", "doc": "

    \n", "default_value": "Literal['abi', 'bytecode']"}, "jpyc_core_sdk.utils.ChainMetadata": {"fullname": "jpyc_core_sdk.utils.ChainMetadata", "modulename": "jpyc_core_sdk.utils", "qualname": "ChainMetadata", "kind": "variable", "doc": "

    \n", "default_value": "dict[ChainName, dict[str, jpyc_core_sdk.utils.types.NetworkMetadata]]"}, "jpyc_core_sdk.utils.ChainName": {"fullname": "jpyc_core_sdk.utils.ChainName", "modulename": "jpyc_core_sdk.utils", "qualname": "ChainName", "kind": "variable", "doc": "

    \n", "default_value": "Literal['ethereum', 'polygon', 'gnosis', 'avalanche', 'astar', 'shiden', 'localhost']"}, "jpyc_core_sdk.utils.ContractType": {"fullname": "jpyc_core_sdk.utils.ContractType", "modulename": "jpyc_core_sdk.utils", "qualname": "ContractType", "kind": "variable", "doc": "

    \n", "default_value": "Literal['jpyc', 'jpyc_prepaid']"}, "jpyc_core_sdk.utils.Bytes32": {"fullname": "jpyc_core_sdk.utils.Bytes32", "modulename": "jpyc_core_sdk.utils", "qualname": "Bytes32", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[str, AfterValidator(func=<function validate_bytes32>)]"}, "jpyc_core_sdk.utils.ChecksumAddress": {"fullname": "jpyc_core_sdk.utils.ChecksumAddress", "modulename": "jpyc_core_sdk.utils", "qualname": "ChecksumAddress", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[str, AfterValidator(func=<function validate_checksum_address>)]"}, "jpyc_core_sdk.utils.RpcEndpoint": {"fullname": "jpyc_core_sdk.utils.RpcEndpoint", "modulename": "jpyc_core_sdk.utils", "qualname": "RpcEndpoint", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[str, AfterValidator(func=<function validate_rpc_endpoint>)]"}, "jpyc_core_sdk.utils.Uint256": {"fullname": "jpyc_core_sdk.utils.Uint256", "modulename": "jpyc_core_sdk.utils", "qualname": "Uint256", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[int, AfterValidator(func=<function validate_uint256>)]"}, "jpyc_core_sdk.utils.Uint8": {"fullname": "jpyc_core_sdk.utils.Uint8", "modulename": "jpyc_core_sdk.utils", "qualname": "Uint8", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[int, AfterValidator(func=<function validate_uint8>)]"}}, "docInfo": {"jpyc_core_sdk": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.SdkClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 5}, "jpyc_core_sdk.SdkClient.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 165, "bases": 0, "doc": 189}, "jpyc_core_sdk.SdkClient.w3": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "jpyc_core_sdk.SdkClient.account": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "jpyc_core_sdk.SdkClient.set_default_provider": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 83}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 70, "bases": 0, "doc": 66}, "jpyc_core_sdk.SdkClient.set_account": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 85, "bases": 0, "doc": 102}, "jpyc_core_sdk.SdkClient.get_account_address": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 40}, "jpyc_core_sdk.JPYC": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 6}, "jpyc_core_sdk.JPYC.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 116}, "jpyc_core_sdk.JPYC.client": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.JPYC.contract": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.JPYC.is_minter": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 67}, "jpyc_core_sdk.JPYC.minter_allowance": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 9}, "jpyc_core_sdk.JPYC.total_supply": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 9}, "jpyc_core_sdk.JPYC.balance_of": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 9}, "jpyc_core_sdk.JPYC.allowance": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 9}, "jpyc_core_sdk.JPYC.nonces": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 97, "bases": 0, "doc": 65}, "jpyc_core_sdk.JPYC.configure_minter": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 142, "bases": 0, "doc": 115}, "jpyc_core_sdk.JPYC.mint": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 114}, "jpyc_core_sdk.JPYC.transfer": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 114}, "jpyc_core_sdk.JPYC.transfer_from": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 185, "bases": 0, "doc": 128}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 445, "bases": 0, "doc": 245}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 445, "bases": 0, "doc": 245}, "jpyc_core_sdk.JPYC.cancel_authorization": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 269, "bases": 0, "doc": 165}, "jpyc_core_sdk.JPYC.approve": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 112}, "jpyc_core_sdk.JPYC.increase_allowance": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 114}, "jpyc_core_sdk.JPYC.decrease_allowance": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 114}, "jpyc_core_sdk.JPYC.permit": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 356, "bases": 0, "doc": 208}, "jpyc_core_sdk.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.get_proxy_address": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 52}, "jpyc_core_sdk.utils.get_artifacts": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 55}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 46}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 20}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 84, "bases": 0, "doc": 75}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 379, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.UINT_MIN": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.UINT256_MAX": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.UINT8_MAX": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.remove_decimals": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 105, "bases": 0, "doc": 37}, "jpyc_core_sdk.utils.restore_decimals": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 7}, "jpyc_core_sdk.utils.AccountNotInitialized": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 14}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.InvalidBytes32": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 14}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 14}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.InvalidUint8": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 13}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.InvalidUint8.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.InvalidUint256": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 13}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.InvalidUint256.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.NetworkNotSupported": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 41}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.TransactionFailed": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 23}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.TransactionFailed.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 24}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.ArtifactType": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.ChainMetadata": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.ChainName": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 23, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.ContractType": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.Bytes32": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.ChecksumAddress": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.RpcEndpoint": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.Uint256": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.Uint8": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}}, "length": 77, "save": true}, "index": {"qualname": {"root": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 9, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 9}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 3}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.JPYC.total_supply": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 9}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}}}}}}}}}}, "s": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}, "w": {"3": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 3, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 4}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.client": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.contract": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ContractType": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 8}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 4}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 21}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 1, "t": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.total_supply": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.balance_of": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"jpyc_core_sdk.JPYC.balance_of": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 2}, "docs": {"jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 9, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk": {"tf": 1}, "jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.client": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.contract": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 77}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk": {"tf": 1}, "jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 77}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.contract": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ContractType": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 8}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.client": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk": {"tf": 1}, "jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 77, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 9}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 3}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.JPYC.total_supply": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 9}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}}}}}}}}}}, "s": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}, "w": {"3": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 3, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 4}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 4}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 1, "t": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.total_supply": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.balance_of": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"jpyc_core_sdk.JPYC.balance_of": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 46}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 2}, "docs": {"jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 1}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"0": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 2}, "1": {"0": {"0": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}}, "df": 2}, "1": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}}, "df": 1}, "2": {"0": {"0": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "1": {"1": {"5": {"5": {"1": {"1": {"1": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"7": {"9": {"2": {"0": {"8": {"9": {"2": {"3": {"7": {"3": {"1": {"6": {"1": {"9": {"5": {"4": {"2": {"3": {"5": {"7": {"0": {"9": {"8": {"5": {"0": {"0": {"8": {"6": {"8": {"7": {"9": {"0": {"7": {"8": {"5": {"3": {"2": {"6": {"9": {"9": {"8": {"4": {"6": {"6": {"5": {"6": {"4": {"0": {"5": {"6": {"4": {"0": {"3": {"9": {"4": {"5": {"7": {"5": {"8": {"4": {"0": {"0": {"7": {"9": {"1": {"3": {"1": {"2": {"9": {"6": {"3": {"9": {"9": {"3": {"5": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"7": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1, ":": {"8": {"5": {"4": {"5": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "2": {"0": {"0": {"docs": {"jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}}, "df": 1}, "1": {"docs": {"jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}}, "df": 1}, "2": {"docs": {"jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}}, "df": 1}, "3": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "5": {"5": {"docs": {"jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"0": {"0": {"docs": {"jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 1}, "1": {"docs": {"jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "1": {"3": {"3": {"7": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"6": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"3": {"1": {"1": {"3": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "4": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"9": {"2": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"0": {"0": {"0": {"2": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 9.591663046625438}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 11, "x": {"2": {"7": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 12.083045973594572}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 2}, "jpyc_core_sdk.utils.ChainName": {"tf": 3.7416573867739413}, "jpyc_core_sdk.utils.ContractType": {"tf": 2}}, "df": 6}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 3.3166247903554}}, "df": 1}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 2.8284271247461903}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 3.3166247903554}}, "df": 1}, "o": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 3.3166247903554}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}}, "df": 1, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 3.7416573867739413}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}}}}, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"1": {"2": {"7": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 2}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.ContractType": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 2}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 2}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}}, "x": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "i": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}, "n": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}}, "df": 1}}}}, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1.4142135623730951}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.Uint256": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}}}}}}}}}, "signature": {"root": {"0": {"docs": {}, "df": 0, "x": {"1": {"0": {"7": {"docs": {}, "df": 0, "b": {"4": {"docs": {}, "df": 0, "a": {"8": {"docs": {}, "df": 0, "e": {"0": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "docs": {}, "df": 0, "c": {"0": {"0": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "a": {"0": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 11}, "docs": {}, "df": 0}}, "d": {"4": {"0": {"docs": {"jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "3": {"9": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 11.313708498984761}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 6}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 7.3484692283495345}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 8.12403840463596}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 6.4031242374328485}, "jpyc_core_sdk.JPYC.__init__": {"tf": 8.12403840463596}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 6.782329983125268}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 4.242640687119285}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 4.242640687119285}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 4.242640687119285}, "jpyc_core_sdk.JPYC.allowance": {"tf": 4.242640687119285}, "jpyc_core_sdk.JPYC.nonces": {"tf": 8.602325267042627}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.mint": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.transfer": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 11.874342087037917}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 18.411952639521967}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 18.411952639521967}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 14.352700094407323}, "jpyc_core_sdk.JPYC.approve": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.permit": {"tf": 16.492422502470642}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 4.898979485566356}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 5.744562646538029}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 5}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 3}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 8}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 9}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 3.1622776601683795}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 4.47213595499958}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 3.605551275463989}}, "df": 37, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}}, "df": 4, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}}, "df": 14, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1.4142135623730951}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}}, "df": 4}, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}}, "df": 4}}}}}}}, "s": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.23606797749979}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 27}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 17}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4}}}}}}}, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 3}}, "v": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 3}}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}, "y": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 2, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}}, "df": 15}}}}}}, "t": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 15}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 20, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "v": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 7}}}}}, "g": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}}, "df": 4}}}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 13}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 2}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"3": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 6}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 13}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 12}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 1}}}}}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 10, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 10}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 10}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}}, "df": 2}}}}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}}, "df": 1}}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 4}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 4}}}}}}}}}}}, "doc": {"root": {"docs": {"jpyc_core_sdk": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 9.219544457292887}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.account": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 6.4031242374328485}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 5.830951894845301}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 7.0710678118654755}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 4.58257569495584}, "jpyc_core_sdk.JPYC": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.__init__": {"tf": 7.14142842854285}, "jpyc_core_sdk.JPYC.client": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.contract": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 6.164414002968976}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.nonces": {"tf": 6.244997998398398}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.mint": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.transfer": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 8.18535277187245}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 10.816653826391969}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 10.816653826391969}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 9.16515138991168}, "jpyc_core_sdk.JPYC.approve": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.permit": {"tf": 10.099504938362077}, "jpyc_core_sdk.utils": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 5.196152422706632}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 5.196152422706632}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 4.69041575982343}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 3.3166247903554}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 6.082762530298219}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 4.795831523312719}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 4.358898943540674}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 3.7416573867739413}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 3.7416573867739413}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainName": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ContractType": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.Uint256": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.Uint8": {"tf": 1.7320508075688772}}, "df": 77, "s": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 5, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 7, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}}, "df": 17}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 5}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 7}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}}, "df": 4}}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 12}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 2}, "jpyc_core_sdk.JPYC.client": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": null}, "jpyc_core_sdk.JPYC.__init__": {"tf": null}}, "df": 2}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}}, "df": 8}, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.contract": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 2}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.7320508075688772}}, "df": 5, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 3}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 8}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1.4142135623730951}}, "df": 4, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 15}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 9}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 13}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 2}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 3}}, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 2}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1.4142135623730951}}, "df": 19}}, "o": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 11, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 5}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.7320508075688772}}, "df": 8}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 13, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 11}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 11}}}}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 4, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 17, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 2}, "d": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 13}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 3, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 6}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 10}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 8}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "t": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 2}}}}}}, "f": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.mint": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.transfer": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.6457513110645907}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.6457513110645907}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.6457513110645907}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 20}, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.23606797749979}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 26, "d": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.client": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.23606797749979}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 25, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}}, "df": 6}, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.8284271247461903}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 2}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 2}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 2}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.23606797749979}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 2}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1.7320508075688772}}, "df": 5, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "s": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}}, "p": {"2": {"6": {"1": {"2": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 2}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 10}}}}}, "a": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 21, "m": {"docs": {}, "df": 0, "p": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}}, "df": 1}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 10}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 23}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 2}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.4142135623730951}}, "df": 2}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 2}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 2}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 16, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1.4142135623730951}}, "df": 17}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}, "y": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 3}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 7}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 3, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 2}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.7320508075688772}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 2.23606797749979}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.get_proxy_address": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}}, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 9}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}, "f": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.4142135623730951}}, "df": 22}, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 6}}}}}, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 4, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 2}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}}, "df": 5, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 3}}}}}}}}}}, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 23}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 5}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 19}, "d": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8}}}}}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 12}}}, "e": {"docs": {}, "df": 0, "b": {"3": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 5}, "docs": {}, "df": 0}, "i": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 2.23606797749979}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}}, "df": 1, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}}, "df": 14}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 3}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "v": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 4, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 20, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.7320508075688772}}, "df": 7}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2, "m": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}}, "df": 16}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 15}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 7}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 13}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.4142135623730951}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 13}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}}, "df": 5}, "docs": {}, "df": 0}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 3}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.TransactionFailed": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 2.449489742783178}}, "df": 2}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 4}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 2}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1.4142135623730951}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 11}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 1}}}}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; + /** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"jpyc_core_sdk": {"fullname": "jpyc_core_sdk", "modulename": "jpyc_core_sdk", "kind": "module", "doc": "

    \n"}, "jpyc_core_sdk.SdkClient": {"fullname": "jpyc_core_sdk.SdkClient", "modulename": "jpyc_core_sdk", "qualname": "SdkClient", "kind": "class", "doc": "

    SDK client.

    \n", "bases": "jpyc_core_sdk.interfaces.client.ISdkClient"}, "jpyc_core_sdk.SdkClient.__init__": {"fullname": "jpyc_core_sdk.SdkClient.__init__", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.__init__", "kind": "function", "doc": "

    Constructor that initializes SDK client.

    \n\n
    Notes:
    \n\n
    \n
      \n
    • Either chain_name & network_name parameters or rpc_endpoint parameter are required.
    • \n
    • This constructor prioritizes rpc_endpoint parameter over chain_name & network_name parameters when configuring rpc_endpoint.
    • \n
    \n
    \n\n
    Arguments:
    \n\n
      \n
    • chain_name (str, optional): Chain name
    • \n
    • network_name (str, optional): Network name
    • \n
    • rpc_endpoint (RpcEndpoint, optional): RPC endpoint
    • \n
    • private_key (Bytes32, optional): private key of EOA
    • \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidBytes32: If the supplied private_key is not in a valid form
    • \n
    • InvalidRpcEndpoint: If the supplied rpc_endpoint is not in a valid form
    • \n
    • NetworkNotSupported: If the specified network is not supported by the SDK
    • \n
    • ValidationError: If pydantic validation fails
    • \n
    \n", "signature": "(\tchain_name: ChainName | None = None,\tnetwork_name: str | None = None,\trpc_endpoint: Optional[Annotated[str, AfterValidator(func=<function validate_rpc_endpoint>)]] = None,\tprivate_key: Optional[Annotated[str, AfterValidator(func=<function validate_bytes32>)]] = None)"}, "jpyc_core_sdk.SdkClient.w3": {"fullname": "jpyc_core_sdk.SdkClient.w3", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.w3", "kind": "variable", "doc": "

    Web3: Configured web3 instance

    \n"}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"fullname": "jpyc_core_sdk.SdkClient.rpc_endpoint", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.rpc_endpoint", "kind": "variable", "doc": "

    str: RPC endpoint

    \n"}, "jpyc_core_sdk.SdkClient.account": {"fullname": "jpyc_core_sdk.SdkClient.account", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.account", "kind": "variable", "doc": "

    LocalAccount | None: Account instance

    \n"}, "jpyc_core_sdk.SdkClient.set_default_provider": {"fullname": "jpyc_core_sdk.SdkClient.set_default_provider", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.set_default_provider", "kind": "function", "doc": "

    Set provider using one of the default RPC endpoints.

    \n\n
    Arguments:
    \n\n
      \n
    • chain_name (str): Chain name
    • \n
    • network_name (str): Network name
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Web3: Configured web3 instance

    \n
    \n\n
    Raises:
    \n\n
      \n
    • NetworkNotSupported: If the specified network is not supported by the SDK
    • \n
    • ValidationError: If pydantic validation fails
    • \n
    \n", "signature": "(self, chain_name: ChainName, network_name: str) -> web3.main.Web3:", "funcdef": "def"}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"fullname": "jpyc_core_sdk.SdkClient.set_custom_provider", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.set_custom_provider", "kind": "function", "doc": "

    Set provider using a custom RPC endpoint.

    \n\n
    Arguments:
    \n\n
      \n
    • rpc_endpoint (RpcEndpoint): Custom RPC endpoint
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Web3: Configured web3 instance

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidRpcEndpoint: If the supplied rpc_endpoint is not in a valid form
    • \n
    \n", "signature": "(\tself,\trpc_endpoint: Annotated[str, AfterValidator(func=<function validate_rpc_endpoint>)]) -> web3.main.Web3:", "funcdef": "def"}, "jpyc_core_sdk.SdkClient.set_account": {"fullname": "jpyc_core_sdk.SdkClient.set_account", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.set_account", "kind": "function", "doc": "

    Set account with a private key.

    \n\n
    Notes:
    \n\n
    \n

    If private_key parameter is set to None, this method removes account from the configured web3 instance.

    \n
    \n\n
    Arguments:
    \n\n
      \n
    • private_key (Bytes32, optional): Private key of account
    • \n
    \n\n
    Returns:
    \n\n
    \n

    LocalAccount | None: Configured account instance

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidBytes32: If the supplied private_key is not in a valid form
    • \n
    \n", "signature": "(\tself,\tprivate_key: Optional[Annotated[str, AfterValidator(func=<function validate_bytes32>)]]) -> eth_account.signers.local.LocalAccount | None:", "funcdef": "def"}, "jpyc_core_sdk.SdkClient.get_account_address": {"fullname": "jpyc_core_sdk.SdkClient.get_account_address", "modulename": "jpyc_core_sdk", "qualname": "SdkClient.get_account_address", "kind": "function", "doc": "

    Get address of the configured account.

    \n\n
    Returns:
    \n\n
    \n

    ChecksumAddress: Public address of account

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    \n", "signature": "(\tself) -> Annotated[str, AfterValidator(func=<function validate_checksum_address at 0x1040df740>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC": {"fullname": "jpyc_core_sdk.JPYC", "modulename": "jpyc_core_sdk", "qualname": "JPYC", "kind": "class", "doc": "

    Implementation of IJPYC.

    \n", "bases": "jpyc_core_sdk.interfaces.jpyc.IJPYC"}, "jpyc_core_sdk.JPYC.__init__": {"fullname": "jpyc_core_sdk.JPYC.__init__", "modulename": "jpyc_core_sdk", "qualname": "JPYC.__init__", "kind": "function", "doc": "

    Constructor that initializes a JPYC client.

    \n\n
    Notes:
    \n\n
    \n
      \n
    • If client parameter is configured to use localhost network, this deploys JPYC contracts to localhost network, initializes it, and sets its address to address attribute.
    • \n
    • If contract_address is supplied, this configures contract instance with that address.
    • \n
    \n
    \n\n
    Arguments:
    \n\n
      \n
    • client (SdkClient): Configured SDK client
    • \n
    • contract_type (ContractType): Contract type (jpyc or jpyc_prepaid)
    • \n
    • contract_address (EthChecksumAddress, optional): Contract address
    • \n
    \n", "signature": "(\tclient: jpyc_core_sdk.client.SdkClient,\tcontract_type: ContractType = 'jpyc',\tcontract_address: Optional[eth_typing.evm.ChecksumAddress] = None)"}, "jpyc_core_sdk.JPYC.client": {"fullname": "jpyc_core_sdk.JPYC.client", "modulename": "jpyc_core_sdk", "qualname": "JPYC.client", "kind": "variable", "doc": "

    ISdkClient: Configured SDK client

    \n"}, "jpyc_core_sdk.JPYC.contract": {"fullname": "jpyc_core_sdk.JPYC.contract", "modulename": "jpyc_core_sdk", "qualname": "JPYC.contract", "kind": "variable", "doc": "

    Contract: Configured contract instance

    \n"}, "jpyc_core_sdk.JPYC.is_minter": {"fullname": "jpyc_core_sdk.JPYC.is_minter", "modulename": "jpyc_core_sdk", "qualname": "JPYC.is_minter", "kind": "function", "doc": "

    Call isMinter function.

    \n\n
    Arguments:
    \n\n
      \n
    • account (ChecksumAddress): Account address
    • \n
    \n\n
    Returns:
    \n\n
    \n

    bool: True if account is a minter, false otherwise

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidChecksumAddress: If supplied account is not in a valid form
    • \n
    \n", "signature": "(\tself,\taccount: Annotated[str, AfterValidator(func=<function validate_checksum_address>)]) -> bool:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.minter_allowance": {"fullname": "jpyc_core_sdk.JPYC.minter_allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.minter_allowance", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, "jpyc_core_sdk.JPYC.total_supply": {"fullname": "jpyc_core_sdk.JPYC.total_supply", "modulename": "jpyc_core_sdk", "qualname": "JPYC.total_supply", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, "jpyc_core_sdk.JPYC.balance_of": {"fullname": "jpyc_core_sdk.JPYC.balance_of", "modulename": "jpyc_core_sdk", "qualname": "JPYC.balance_of", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, "jpyc_core_sdk.JPYC.allowance": {"fullname": "jpyc_core_sdk.JPYC.allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.allowance", "kind": "function", "doc": "

    The type of the None singleton.

    \n", "signature": "(*args, **kwargs):", "funcdef": "def"}, "jpyc_core_sdk.JPYC.nonces": {"fullname": "jpyc_core_sdk.JPYC.nonces", "modulename": "jpyc_core_sdk", "qualname": "JPYC.nonces", "kind": "function", "doc": "

    Call nonces function.

    \n\n
    Arguments:
    \n\n
      \n
    • owner (ChecksumAddress): Owner address
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Uint256: Nonce for EIP2612's permit.

    \n
    \n\n
    Raises:
    \n\n
      \n
    • InvalidChecksumAddress: If supplied owner is not in a valid form
    • \n
    \n", "signature": "(\tself,\towner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x1040dfa60>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.configure_minter": {"fullname": "jpyc_core_sdk.JPYC.configure_minter", "modulename": "jpyc_core_sdk", "qualname": "JPYC.configure_minter", "kind": "function", "doc": "

    Call configureMinter function.

    \n\n
    Arguments:
    \n\n
      \n
    • minter (ChecksumAddress): Minter address
    • \n
    • minter_allowed_amount (Uint256): Minter allowance
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied minter is not in a valid form
    • \n
    • InvalidUint256: If supplied minter_allowed_amount is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tminter: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tminter_allowed_amount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.mint": {"fullname": "jpyc_core_sdk.JPYC.mint", "modulename": "jpyc_core_sdk", "qualname": "JPYC.mint", "kind": "function", "doc": "

    Call mint function.

    \n\n
    Arguments:
    \n\n
      \n
    • to (ChecksumAddress): Receiver address
    • \n
    • amount (Uint256): Amount of tokens to mint
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied to is not in a valid form
    • \n
    • InvalidUint256: If supplied amount is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tamount: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.transfer": {"fullname": "jpyc_core_sdk.JPYC.transfer", "modulename": "jpyc_core_sdk", "qualname": "JPYC.transfer", "kind": "function", "doc": "

    Call transfer function.

    \n\n
    Arguments:
    \n\n
      \n
    • to (ChecksumAddress): Receiver address
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied to is not in a valid form
    • \n
    • InvalidUint256: If supplied value is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.transfer_from": {"fullname": "jpyc_core_sdk.JPYC.transfer_from", "modulename": "jpyc_core_sdk", "qualname": "JPYC.transfer_from", "kind": "function", "doc": "

    Call transferFrom function.

    \n\n
    Arguments:
    \n\n
      \n
    • from_ (ChecksumAddress): Owner address
    • \n
    • to (ChecksumAddress): Receiver address
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied from_ or to is not in a valid form
    • \n
    • InvalidUint256: If supplied value is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tfrom_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"fullname": "jpyc_core_sdk.JPYC.transfer_with_authorization", "modulename": "jpyc_core_sdk", "qualname": "JPYC.transfer_with_authorization", "kind": "function", "doc": "

    Call transferWithAuthorization function.

    \n\n
    Arguments:
    \n\n
      \n
    • from_ (ChecksumAddress): Owner address
    • \n
    • to (ChecksumAddress): Receiver allowance
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    • valid_after (Uint256): Unix time when transaction becomes valid
    • \n
    • valid_before (Uint256): Unix time when transaction becomes invalid
    • \n
    • nonce (Bytes32): Unique nonce
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied nonce or r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied from_ or to is not in a valid form
    • \n
    • InvalidUint256: If supplied value or valid_after or valid_before is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tfrom_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tnonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"fullname": "jpyc_core_sdk.JPYC.receive_with_authorization", "modulename": "jpyc_core_sdk", "qualname": "JPYC.receive_with_authorization", "kind": "function", "doc": "

    Call receiveWithAuthorization function.

    \n\n
    Arguments:
    \n\n
      \n
    • from_ (ChecksumAddress): Owner address
    • \n
    • to (ChecksumAddress): Receiver allowance
    • \n
    • value (Uint256): Amount of tokens to transfer
    • \n
    • valid_after (Uint256): Unix time when transaction becomes valid
    • \n
    • valid_before (Uint256): Unix time when transaction becomes invalid
    • \n
    • nonce (Bytes32): Unique nonce
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied nonce or r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied from_ or to is not in a valid form
    • \n
    • InvalidUint256: If supplied value or valid_after or valid_before is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tfrom_: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tto: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_after: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tvalid_before: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tnonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.cancel_authorization": {"fullname": "jpyc_core_sdk.JPYC.cancel_authorization", "modulename": "jpyc_core_sdk", "qualname": "JPYC.cancel_authorization", "kind": "function", "doc": "

    Call cancelAuthorization function.

    \n\n
    Arguments:
    \n\n
      \n
    • authorizer (ChecksumAddress): Owner address
    • \n
    • nonce (Bytes32): Unique nonce
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied nonce or r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied authorizer is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tauthorizer: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tnonce: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.approve": {"fullname": "jpyc_core_sdk.JPYC.approve", "modulename": "jpyc_core_sdk", "qualname": "JPYC.approve", "kind": "function", "doc": "

    Call approve function.

    \n\n
    Arguments:
    \n\n
      \n
    • spender (ChecksumAddress): Spender address
    • \n
    • value (Uint256): Amount of allowance
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied spender is not in a valid form
    • \n
    • InvalidUint256: If supplied value is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.increase_allowance": {"fullname": "jpyc_core_sdk.JPYC.increase_allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.increase_allowance", "kind": "function", "doc": "

    Call increaseAllowance function.

    \n\n
    Arguments:
    \n\n
      \n
    • spender (ChecksumAddress): Spender address
    • \n
    • increment (Uint256): Amount of allowance to increase
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied spender is not in a valid form
    • \n
    • InvalidUint256: If supplied increment is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tincrement: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.decrease_allowance": {"fullname": "jpyc_core_sdk.JPYC.decrease_allowance", "modulename": "jpyc_core_sdk", "qualname": "JPYC.decrease_allowance", "kind": "function", "doc": "

    Call decreaseAllowance function.

    \n\n
    Arguments:
    \n\n
      \n
    • spender (ChecksumAddress): Spender address
    • \n
    • decrement (Uint256): Amount of allowance to decrease
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidChecksumAddress: If supplied spender is not in a valid form
    • \n
    • InvalidUint256: If supplied decrement is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tdecrement: Annotated[int, AfterValidator(func=<function validate_uint256>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]:", "funcdef": "def"}, "jpyc_core_sdk.JPYC.permit": {"fullname": "jpyc_core_sdk.JPYC.permit", "modulename": "jpyc_core_sdk", "qualname": "JPYC.permit", "kind": "function", "doc": "

    Call permit function.

    \n\n
    Arguments:
    \n\n
      \n
    • owner (ChecksumAddress): Owner address
    • \n
    • spender (ChecksumAddress): Spender address
    • \n
    • value (Uint256): Amount of allowance
    • \n
    • deadline (Uint256): Unix time when transaction becomes invalid
    • \n
    • v (Uint8): v of ECDSA
    • \n
    • r (Bytes32): r of ECDSA
    • \n
    • s (Bytes32): s of ECDSA
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Bytes32: Transaction hash

    \n
    \n\n
    Raises:
    \n\n
      \n
    • AccountNotInitialized: If account is not initialized
    • \n
    • InvalidBytes32: If supplied r or s is not in a valid form
    • \n
    • InvalidChecksumAddress: If supplied owner or spender is not in a valid form
    • \n
    • InvalidUint256: If supplied value or deadline is not in a valid form
    • \n
    • InvalidUint8: If supplied v is not in a valid form
    • \n
    • TransactionFailed: If transaction fails
    • \n
    • TransactionSimulationFailed: If transaction simulation fails
    • \n
    \n", "signature": "(\tself,\towner: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tspender: Annotated[str, AfterValidator(func=<function validate_checksum_address>)],\tvalue: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tdeadline: Annotated[int, AfterValidator(func=<function validate_uint256>)],\tv: Annotated[int, AfterValidator(func=<function validate_uint8>)],\tr: Annotated[str, AfterValidator(func=<function validate_bytes32>)],\ts: Annotated[str, AfterValidator(func=<function validate_bytes32>)]) -> Annotated[str, AfterValidator(func=<function validate_bytes32 at 0x1040dfb00>)]:", "funcdef": "def"}, "jpyc_core_sdk.utils": {"fullname": "jpyc_core_sdk.utils", "modulename": "jpyc_core_sdk.utils", "kind": "module", "doc": "

    \n"}, "jpyc_core_sdk.utils.get_proxy_address": {"fullname": "jpyc_core_sdk.utils.get_proxy_address", "modulename": "jpyc_core_sdk.utils", "qualname": "get_proxy_address", "kind": "function", "doc": "

    Get proxy address from the specified contract type.

    \n\n
    Arguments:
    \n\n
      \n
    • contract_type (ContractType): Contract type (jpyc or jpyc_prepaid)
    • \n
    \n\n
    Returns:
    \n\n
    \n

    ChecksumAddress: Checksum address of proxy contract

    \n
    \n", "signature": "(contract_type: ContractType) -> eth_typing.evm.ChecksumAddress:", "funcdef": "def"}, "jpyc_core_sdk.utils.get_artifacts": {"fullname": "jpyc_core_sdk.utils.get_artifacts", "modulename": "jpyc_core_sdk.utils", "qualname": "get_artifacts", "kind": "function", "doc": "

    Get contract artifacts from the specified file path.

    \n\n
    Arguments:
    \n\n
      \n
    • file_path (Path): absolute path of artifacts file
    • \n
    • artifact_type (ArtifactType): type of artifacts
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Any: Artifacts of contracts

    \n
    \n", "signature": "(file_path: pathlib._local.Path, artifact_type: ArtifactType) -> Any:", "funcdef": "def"}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"fullname": "jpyc_core_sdk.utils.resolve_artifacts_file_path", "modulename": "jpyc_core_sdk.utils", "qualname": "resolve_artifacts_file_path", "kind": "function", "doc": "

    Resolve the path of artifacts file from the specified contract type.

    \n\n
    Arguments:
    \n\n
      \n
    • contract_type (ContractType): Contract type
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Path: Absolute path of artifacts file

    \n
    \n", "signature": "(contract_type: ContractType) -> pathlib._local.Path:", "funcdef": "def"}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"fullname": "jpyc_core_sdk.utils.enumerate_supported_networks", "modulename": "jpyc_core_sdk.utils", "qualname": "enumerate_supported_networks", "kind": "function", "doc": "

    Enumerate all the supported networks.

    \n\n
    Returns:
    \n\n
    \n

    str: supported networks

    \n
    \n", "signature": "() -> str:", "funcdef": "def"}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"fullname": "jpyc_core_sdk.utils.get_default_rpc_endpoint", "modulename": "jpyc_core_sdk.utils", "qualname": "get_default_rpc_endpoint", "kind": "function", "doc": "

    Get the default RPC endpoint for the specified network.

    \n\n
    Arguments:
    \n\n
      \n
    • chain_name (ChainName, optional): Chain name
    • \n
    • network_name (str, optional): Network name
    • \n
    \n\n
    Returns:
    \n\n
    \n

    RpcEndpoint: RPC endpoint

    \n
    \n\n
    Raises:
    \n\n
      \n
    • NetworkNotSupported: If the specified network is not supported by the SDK
    • \n
    \n", "signature": "(\tchain_name: ChainName | None,\tnetwork_name: str | None) -> Annotated[str, AfterValidator(func=<function validate_rpc_endpoint at 0x1040dfba0>)]:", "funcdef": "def"}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"fullname": "jpyc_core_sdk.utils.SUPPORTED_CHAINS", "modulename": "jpyc_core_sdk.utils", "qualname": "SUPPORTED_CHAINS", "kind": "variable", "doc": "

    \n", "default_value": "{'ethereum': {'mainnet': {'id': 1, 'name': 'Ethereum Mainnet', 'rpc_endpoints': ['https://ethereum-rpc.publicnode.com']}, 'sepolia': {'id': 11155111, 'name': 'Ethereum Sepolia Testnet', 'rpc_endpoints': ['https://ethereum-sepolia-rpc.publicnode.com']}}, 'polygon': {'mainnet': {'id': 137, 'name': 'Polygon Mainnet', 'rpc_endpoints': ['https://polygon-rpc.com']}, 'amoy': {'id': 80002, 'name': 'Polygon Amoy Testnet', 'rpc_endpoints': ['https://rpc-amoy.polygon.technology']}}, 'gnosis': {'mainnet': {'id': 100, 'name': 'Gnosis Chain', 'rpc_endpoints': ['https://rpc.gnosischain.com']}, 'chiado': {'id': 10200, 'name': 'Gnosis Chiado Testnet', 'rpc_endpoints': ['https://rpc.chiadochain.net']}}, 'avalanche': {'mainnet': {'id': 43114, 'name': 'Avalanche C-Chain', 'rpc_endpoints': ['https://api.avax.network/ext/bc/C/rpc']}, 'fuji': {'id': 43113, 'name': 'Avalanche Fuji Testnet', 'rpc_endpoints': ['https://api.avax-test.network/ext/bc/C/rpc']}}, 'astar': {'mainnet': {'id': 592, 'name': 'Astar Network', 'rpc_endpoints': ['https://astar.public.blastapi.io']}}, 'shiden': {'mainnet': {'id': 336, 'name': 'Shiden Network', 'rpc_endpoints': ['https://shiden.public.blastapi.io']}}, 'localhost': {'devnet': {'id': 31337, 'name': 'Localhost Network', 'rpc_endpoints': ['http://127.0.0.1:8545/']}}}"}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"fullname": "jpyc_core_sdk.utils.POA_MIDDLEWARE", "modulename": "jpyc_core_sdk.utils", "qualname": "POA_MIDDLEWARE", "kind": "variable", "doc": "

    \n", "default_value": "'poa_middleware'"}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"fullname": "jpyc_core_sdk.utils.SIGN_MIDDLEWARE", "modulename": "jpyc_core_sdk.utils", "qualname": "SIGN_MIDDLEWARE", "kind": "variable", "doc": "

    \n", "default_value": "'sign_middleware'"}, "jpyc_core_sdk.utils.UINT_MIN": {"fullname": "jpyc_core_sdk.utils.UINT_MIN", "modulename": "jpyc_core_sdk.utils", "qualname": "UINT_MIN", "kind": "variable", "doc": "

    \n", "default_value": "0"}, "jpyc_core_sdk.utils.UINT256_MAX": {"fullname": "jpyc_core_sdk.utils.UINT256_MAX", "modulename": "jpyc_core_sdk.utils", "qualname": "UINT256_MAX", "kind": "variable", "doc": "

    \n", "default_value": "115792089237316195423570985008687907853269984665640564039457584007913129639935"}, "jpyc_core_sdk.utils.UINT8_MAX": {"fullname": "jpyc_core_sdk.utils.UINT8_MAX", "modulename": "jpyc_core_sdk.utils", "qualname": "UINT8_MAX", "kind": "variable", "doc": "

    \n", "default_value": "255"}, "jpyc_core_sdk.utils.remove_decimals": {"fullname": "jpyc_core_sdk.utils.remove_decimals", "modulename": "jpyc_core_sdk.utils", "qualname": "remove_decimals", "kind": "function", "doc": "

    Remove decimals.

    \n\n
    Arguments:
    \n\n
      \n
    • value (Uint256 | Decimal): Value in ether
    • \n
    \n\n
    Returns:
    \n\n
    \n

    Uint256: Value in wei

    \n
    \n", "signature": "(\tvalue: Union[Annotated[int, AfterValidator(func=<function validate_uint256>)], decimal.Decimal]) -> Annotated[int, AfterValidator(func=<function validate_uint256 at 0x1040dfa60>)]:", "funcdef": "def"}, "jpyc_core_sdk.utils.restore_decimals": {"fullname": "jpyc_core_sdk.utils.restore_decimals", "modulename": "jpyc_core_sdk.utils", "qualname": "restore_decimals", "kind": "function", "doc": "

    Decorator to restore decimals.

    \n", "signature": "(func):", "funcdef": "def"}, "jpyc_core_sdk.utils.AccountNotInitialized": {"fullname": "jpyc_core_sdk.utils.AccountNotInitialized", "modulename": "jpyc_core_sdk.utils", "qualname": "AccountNotInitialized", "kind": "class", "doc": "

    Raised when account is not initialized or hoisted to web3 instance.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"fullname": "jpyc_core_sdk.utils.AccountNotInitialized.code", "modulename": "jpyc_core_sdk.utils", "qualname": "AccountNotInitialized.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "101"}, "jpyc_core_sdk.utils.InvalidBytes32": {"fullname": "jpyc_core_sdk.utils.InvalidBytes32", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidBytes32", "kind": "class", "doc": "

    Raised when the given byte string is not a valid bytes32.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"fullname": "jpyc_core_sdk.utils.InvalidBytes32.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidBytes32.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"fullname": "jpyc_core_sdk.utils.InvalidBytes32.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidBytes32.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "203"}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"fullname": "jpyc_core_sdk.utils.InvalidChecksumAddress", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidChecksumAddress", "kind": "class", "doc": "

    Raised when the given address is not a valid checksum address.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"fullname": "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidChecksumAddress.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"fullname": "jpyc_core_sdk.utils.InvalidChecksumAddress.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidChecksumAddress.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "200"}, "jpyc_core_sdk.utils.InvalidUint8": {"fullname": "jpyc_core_sdk.utils.InvalidUint8", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint8", "kind": "class", "doc": "

    Raised when the given integer is not a valid uint8.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"fullname": "jpyc_core_sdk.utils.InvalidUint8.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint8.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.InvalidUint8.code": {"fullname": "jpyc_core_sdk.utils.InvalidUint8.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint8.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "201"}, "jpyc_core_sdk.utils.InvalidUint256": {"fullname": "jpyc_core_sdk.utils.InvalidUint256", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint256", "kind": "class", "doc": "

    Raised when the given integer is not a valid uint256.

    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError, builtins.TypeError"}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"fullname": "jpyc_core_sdk.utils.InvalidUint256.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint256.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.InvalidUint256.code": {"fullname": "jpyc_core_sdk.utils.InvalidUint256.code", "modulename": "jpyc_core_sdk.utils", "qualname": "InvalidUint256.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "202"}, "jpyc_core_sdk.utils.NetworkNotSupported": {"fullname": "jpyc_core_sdk.utils.NetworkNotSupported", "modulename": "jpyc_core_sdk.utils", "qualname": "NetworkNotSupported", "kind": "class", "doc": "

    Raised when the specified network is not supported by the SDK.

    \n\n
    Attributes:
    \n\n
      \n
    • chain_name (str): Chain name
    • \n
    • network_name (str): Network name
    • \n
    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"fullname": "jpyc_core_sdk.utils.NetworkNotSupported.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "NetworkNotSupported.__init__", "kind": "function", "doc": "

    \n", "signature": "(chain_name: ChainName, network_name: str)"}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"fullname": "jpyc_core_sdk.utils.NetworkNotSupported.code", "modulename": "jpyc_core_sdk.utils", "qualname": "NetworkNotSupported.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "100"}, "jpyc_core_sdk.utils.TransactionFailed": {"fullname": "jpyc_core_sdk.utils.TransactionFailed", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionFailed", "kind": "class", "doc": "

    Raised when transaction fails.

    \n\n
    Attributes:
    \n\n
      \n
    • message (str): Error message
    • \n
    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"fullname": "jpyc_core_sdk.utils.TransactionFailed.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionFailed.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.TransactionFailed.code": {"fullname": "jpyc_core_sdk.utils.TransactionFailed.code", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionFailed.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "301"}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"fullname": "jpyc_core_sdk.utils.TransactionSimulationFailed", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionSimulationFailed", "kind": "class", "doc": "

    Raised when transaction simulation fails.

    \n\n
    Attributes:
    \n\n
      \n
    • message (str): Error message
    • \n
    \n", "bases": "jpyc_core_sdk.utils.errors.JpycSdkError"}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"fullname": "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionSimulationFailed.__init__", "kind": "function", "doc": "

    \n", "signature": "(message_: str)"}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"fullname": "jpyc_core_sdk.utils.TransactionSimulationFailed.code", "modulename": "jpyc_core_sdk.utils", "qualname": "TransactionSimulationFailed.code", "kind": "variable", "doc": "

    int: Custom error code

    \n", "default_value": "300"}, "jpyc_core_sdk.utils.ArtifactType": {"fullname": "jpyc_core_sdk.utils.ArtifactType", "modulename": "jpyc_core_sdk.utils", "qualname": "ArtifactType", "kind": "variable", "doc": "

    \n", "default_value": "Literal['abi', 'bytecode']"}, "jpyc_core_sdk.utils.ChainMetadata": {"fullname": "jpyc_core_sdk.utils.ChainMetadata", "modulename": "jpyc_core_sdk.utils", "qualname": "ChainMetadata", "kind": "variable", "doc": "

    \n", "default_value": "dict[ChainName, dict[str, jpyc_core_sdk.utils.types.NetworkMetadata]]"}, "jpyc_core_sdk.utils.ChainName": {"fullname": "jpyc_core_sdk.utils.ChainName", "modulename": "jpyc_core_sdk.utils", "qualname": "ChainName", "kind": "variable", "doc": "

    \n", "default_value": "Literal['ethereum', 'polygon', 'gnosis', 'avalanche', 'astar', 'shiden', 'localhost']"}, "jpyc_core_sdk.utils.ContractType": {"fullname": "jpyc_core_sdk.utils.ContractType", "modulename": "jpyc_core_sdk.utils", "qualname": "ContractType", "kind": "variable", "doc": "

    \n", "default_value": "Literal['jpyc', 'jpyc_prepaid']"}, "jpyc_core_sdk.utils.Bytes32": {"fullname": "jpyc_core_sdk.utils.Bytes32", "modulename": "jpyc_core_sdk.utils", "qualname": "Bytes32", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[str, AfterValidator(func=<function validate_bytes32>)]"}, "jpyc_core_sdk.utils.ChecksumAddress": {"fullname": "jpyc_core_sdk.utils.ChecksumAddress", "modulename": "jpyc_core_sdk.utils", "qualname": "ChecksumAddress", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[str, AfterValidator(func=<function validate_checksum_address>)]"}, "jpyc_core_sdk.utils.RpcEndpoint": {"fullname": "jpyc_core_sdk.utils.RpcEndpoint", "modulename": "jpyc_core_sdk.utils", "qualname": "RpcEndpoint", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[str, AfterValidator(func=<function validate_rpc_endpoint>)]"}, "jpyc_core_sdk.utils.Uint256": {"fullname": "jpyc_core_sdk.utils.Uint256", "modulename": "jpyc_core_sdk.utils", "qualname": "Uint256", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[int, AfterValidator(func=<function validate_uint256>)]"}, "jpyc_core_sdk.utils.Uint8": {"fullname": "jpyc_core_sdk.utils.Uint8", "modulename": "jpyc_core_sdk.utils", "qualname": "Uint8", "kind": "variable", "doc": "

    \n", "default_value": "typing.Annotated[int, AfterValidator(func=<function validate_uint8>)]"}}, "docInfo": {"jpyc_core_sdk": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.SdkClient": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 5}, "jpyc_core_sdk.SdkClient.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 165, "bases": 0, "doc": 189}, "jpyc_core_sdk.SdkClient.w3": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "jpyc_core_sdk.SdkClient.account": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "jpyc_core_sdk.SdkClient.set_default_provider": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 83}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 70, "bases": 0, "doc": 66}, "jpyc_core_sdk.SdkClient.set_account": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 85, "bases": 0, "doc": 102}, "jpyc_core_sdk.SdkClient.get_account_address": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 40}, "jpyc_core_sdk.JPYC": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 6}, "jpyc_core_sdk.JPYC.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 116}, "jpyc_core_sdk.JPYC.client": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.JPYC.contract": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.JPYC.is_minter": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 67}, "jpyc_core_sdk.JPYC.minter_allowance": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 9}, "jpyc_core_sdk.JPYC.total_supply": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 9}, "jpyc_core_sdk.JPYC.balance_of": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 9}, "jpyc_core_sdk.JPYC.allowance": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 20, "bases": 0, "doc": 9}, "jpyc_core_sdk.JPYC.nonces": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 97, "bases": 0, "doc": 65}, "jpyc_core_sdk.JPYC.configure_minter": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 142, "bases": 0, "doc": 115}, "jpyc_core_sdk.JPYC.mint": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 114}, "jpyc_core_sdk.JPYC.transfer": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 114}, "jpyc_core_sdk.JPYC.transfer_from": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 185, "bases": 0, "doc": 128}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 445, "bases": 0, "doc": 245}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 445, "bases": 0, "doc": 245}, "jpyc_core_sdk.JPYC.cancel_authorization": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 269, "bases": 0, "doc": 165}, "jpyc_core_sdk.JPYC.approve": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 112}, "jpyc_core_sdk.JPYC.increase_allowance": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 114}, "jpyc_core_sdk.JPYC.decrease_allowance": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 140, "bases": 0, "doc": 114}, "jpyc_core_sdk.JPYC.permit": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 356, "bases": 0, "doc": 208}, "jpyc_core_sdk.utils": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.get_proxy_address": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 52}, "jpyc_core_sdk.utils.get_artifacts": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 55}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 46}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 10, "bases": 0, "doc": 20}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 84, "bases": 0, "doc": 75}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 379, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 6, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.UINT_MIN": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.UINT256_MAX": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.UINT8_MAX": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.remove_decimals": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 105, "bases": 0, "doc": 37}, "jpyc_core_sdk.utils.restore_decimals": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 7}, "jpyc_core_sdk.utils.AccountNotInitialized": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 14}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.InvalidBytes32": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 14}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 14}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.InvalidUint8": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 13}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.InvalidUint8.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.InvalidUint256": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 8, "doc": 13}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.InvalidUint256.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.NetworkNotSupported": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 41}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 26, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.TransactionFailed": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 23}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.TransactionFailed.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 6, "doc": 24}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 15, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 1, "signature": 0, "bases": 0, "doc": 6}, "jpyc_core_sdk.utils.ArtifactType": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.ChainMetadata": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 8, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.ChainName": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 23, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.ContractType": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.Bytes32": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.ChecksumAddress": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.RpcEndpoint": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.Uint256": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "jpyc_core_sdk.utils.Uint8": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}}, "length": 77, "save": true}, "index": {"qualname": {"root": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 9, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 9}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 3}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.JPYC.total_supply": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 9}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}}}}}}}}}}, "s": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}, "w": {"3": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 3, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 4}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.client": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.contract": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ContractType": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 8}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 4}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 21}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 1, "t": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.total_supply": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.balance_of": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"jpyc_core_sdk.JPYC.balance_of": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 2}, "docs": {"jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 1}}}}}}, "fullname": {"root": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 9, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk": {"tf": 1}, "jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.client": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.contract": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 77}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk": {"tf": 1}, "jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 77}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.contract": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ContractType": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 8}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.client": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 1}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk": {"tf": 1}, "jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 77, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 9}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 3}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.JPYC.total_supply": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 9}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}}, "df": 3}, "docs": {}, "df": 0}}}}}}}}}}, "s": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}, "w": {"3": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 1}}}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 3, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 4}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 4}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 1, "t": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.total_supply": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.balance_of": {"tf": 1}}, "df": 1}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"jpyc_core_sdk.JPYC.balance_of": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 46}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 2}, "docs": {"jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 1}}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"0": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1}}, "df": 2}, "1": {"0": {"0": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}}, "df": 2}, "1": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}}, "df": 1}, "2": {"0": {"0": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "1": {"1": {"5": {"5": {"1": {"1": {"1": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"7": {"9": {"2": {"0": {"8": {"9": {"2": {"3": {"7": {"3": {"1": {"6": {"1": {"9": {"5": {"4": {"2": {"3": {"5": {"7": {"0": {"9": {"8": {"5": {"0": {"0": {"8": {"6": {"8": {"7": {"9": {"0": {"7": {"8": {"5": {"3": {"2": {"6": {"9": {"9": {"8": {"4": {"6": {"6": {"5": {"6": {"4": {"0": {"5": {"6": {"4": {"0": {"3": {"9": {"4": {"5": {"7": {"5": {"8": {"4": {"0": {"0": {"7": {"9": {"1": {"3": {"1": {"2": {"9": {"6": {"3": {"9": {"9": {"3": {"5": {"docs": {"jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"7": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1, ":": {"8": {"5": {"4": {"5": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "2": {"0": {"0": {"docs": {"jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}}, "df": 1}, "1": {"docs": {"jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}}, "df": 1}, "2": {"docs": {"jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}}, "df": 1}, "3": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "5": {"5": {"docs": {"jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"0": {"0": {"docs": {"jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 1}, "1": {"docs": {"jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "1": {"3": {"3": {"7": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "3": {"6": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"3": {"1": {"1": {"3": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "4": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"9": {"2": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"0": {"0": {"0": {"2": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 9.591663046625438}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 11, "x": {"2": {"7": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 12.083045973594572}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 2}, "jpyc_core_sdk.utils.ChainName": {"tf": 3.7416573867739413}, "jpyc_core_sdk.utils.ContractType": {"tf": 2}}, "df": 6}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 3.3166247903554}}, "df": 1}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 2.8284271247461903}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 2}}}}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 3.3166247903554}}, "df": 1}, "o": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 3.3166247903554}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}}, "df": 1, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 3.7416573867739413}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}}}}, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"1": {"2": {"7": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 2}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {"jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.ContractType": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 2}}, "df": 1}, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 2}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}}, "x": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}}}}}}, "t": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "i": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}, "n": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}}, "df": 1}}}}, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.utils.ArtifactType": {"tf": 1}, "jpyc_core_sdk.utils.ChainName": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1}}, "df": 3}}}}}}, "t": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}, "jpyc_core_sdk.utils.ContractType": {"tf": 1.4142135623730951}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.ChainMetadata": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.utils.Uint256": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.Bytes32": {"tf": 1}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1}, "jpyc_core_sdk.utils.Uint256": {"tf": 1}, "jpyc_core_sdk.utils.Uint8": {"tf": 1}}, "df": 5}}}}}}}}}}, "signature": {"root": {"0": {"docs": {}, "df": 0, "x": {"1": {"0": {"4": {"0": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"7": {"4": {"0": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "a": {"6": {"0": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "b": {"0": {"0": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 11}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "a": {"0": {"docs": {"jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "3": {"9": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 11.313708498984761}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 6}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 7.3484692283495345}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 8.12403840463596}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 6.4031242374328485}, "jpyc_core_sdk.JPYC.__init__": {"tf": 8.12403840463596}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 6.782329983125268}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 4.242640687119285}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 4.242640687119285}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 4.242640687119285}, "jpyc_core_sdk.JPYC.allowance": {"tf": 4.242640687119285}, "jpyc_core_sdk.JPYC.nonces": {"tf": 8.602325267042627}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.mint": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.transfer": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 11.874342087037917}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 18.411952639521967}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 18.411952639521967}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 14.352700094407323}, "jpyc_core_sdk.JPYC.approve": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 10.344080432788601}, "jpyc_core_sdk.JPYC.permit": {"tf": 16.492422502470642}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 4.898979485566356}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 5.744562646538029}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 5}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 3}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 8}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 9}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 3.1622776601683795}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 4.47213595499958}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 3.605551275463989}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 3.605551275463989}}, "df": 37, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}}, "df": 4, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}}, "df": 14, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1.4142135623730951}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}}, "df": 4}, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}}, "df": 4}}}}}}}, "s": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.23606797749979}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 27}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 17}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4}}}}}}}, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 3}}, "v": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 3}}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}, "y": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 2, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}}, "df": 15}}}}}}, "t": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 15}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 20, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 3, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "v": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 7}}}}}, "g": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3.1622776601683795}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.8284271247461903}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 19}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}}, "df": 4}}}}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 13}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 2}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"3": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1}}, "df": 6}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 13}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 12}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 1}}}}}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 10, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 10}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 10}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.JPYC": {"tf": 1}}, "df": 2}}}}}}}}}, "s": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}}, "df": 1}}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 4}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 4}}}}}}}}}}}, "doc": {"root": {"docs": {"jpyc_core_sdk": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 9.219544457292887}, "jpyc_core_sdk.SdkClient.w3": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.account": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 6.4031242374328485}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 5.830951894845301}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 7.0710678118654755}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 4.58257569495584}, "jpyc_core_sdk.JPYC": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.__init__": {"tf": 7.14142842854285}, "jpyc_core_sdk.JPYC.client": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.contract": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 6.164414002968976}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.nonces": {"tf": 6.244997998398398}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.mint": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.transfer": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 8.18535277187245}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 10.816653826391969}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 10.816653826391969}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 9.16515138991168}, "jpyc_core_sdk.JPYC.approve": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 7.681145747868608}, "jpyc_core_sdk.JPYC.permit": {"tf": 10.099504938362077}, "jpyc_core_sdk.utils": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 5.196152422706632}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 5.196152422706632}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 4.69041575982343}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 3.3166247903554}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 6.082762530298219}, "jpyc_core_sdk.utils.SUPPORTED_CHAINS": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.POA_MIDDLEWARE": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.SIGN_MIDDLEWARE": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.UINT_MIN": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.UINT256_MAX": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.UINT8_MAX": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 4.795831523312719}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidBytes32.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidChecksumAddress.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidUint8.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidUint256.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 4.358898943540674}, "jpyc_core_sdk.utils.NetworkNotSupported.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 3.7416573867739413}, "jpyc_core_sdk.utils.TransactionFailed.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 3.7416573867739413}, "jpyc_core_sdk.utils.TransactionSimulationFailed.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.ArtifactType": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainMetadata": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChainName": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ContractType": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.Bytes32": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.ChecksumAddress": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.RpcEndpoint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.Uint256": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.Uint8": {"tf": 1.7320508075688772}}, "df": 77, "s": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 5, "d": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 7, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}}, "df": 17}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 5}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 7}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}}, "df": 4}}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 12}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient": {"tf": 1}, "jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 2}, "jpyc_core_sdk.JPYC.client": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": null}, "jpyc_core_sdk.JPYC.__init__": {"tf": null}}, "df": 2}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.client": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}}, "df": 8}, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.contract": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 2}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.7320508075688772}}, "df": 5, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 3}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 8}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1.4142135623730951}}, "df": 4, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 15}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 9}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 13}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 2}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 3}}, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 2}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1.4142135623730951}}, "df": 19}}, "o": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 11, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 5}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.7320508075688772}}, "df": 8}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 13, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 11}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 11}}}}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 4, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}}, "df": 17, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 2}, "d": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 13}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 3, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 6}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 10}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1}, "jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.contract": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 8}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "t": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 2}}}}}}, "f": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.mint": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.transfer": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.6457513110645907}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.6457513110645907}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.approve": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.6457513110645907}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 20}, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.23606797749979}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 26, "d": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.client": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 2.23606797749979}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 25, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}}, "df": 6}, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.8284271247461903}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 2}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 2}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 2}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.23606797749979}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 2}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1.7320508075688772}}, "df": 5, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "s": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}}, "p": {"2": {"6": {"1": {"2": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 2}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8.code": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256.code": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed.code": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed.code": {"tf": 1}}, "df": 10}}}}}, "a": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 21, "m": {"docs": {}, "df": 0, "p": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}}, "df": 1}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 10}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 23}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 2}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.4142135623730951}}, "df": 2}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 2}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 2}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 16, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1.4142135623730951}}, "df": 17}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}, "y": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 3}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 7}}}}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.approve": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 3, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 2}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.7320508075688772}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 2.23606797749979}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}}}, "x": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.utils.get_proxy_address": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}}, "df": 2}}}}}}, "y": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2.23606797749979}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 9}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}, "f": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC": {"tf": 1}, "jpyc_core_sdk.JPYC.minter_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.total_supply": {"tf": 1}, "jpyc_core_sdk.JPYC.balance_of": {"tf": 1}, "jpyc_core_sdk.JPYC.allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.4142135623730951}}, "df": 22}, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 6}}}}}, "r": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 4, "p": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 2.449489742783178}, "jpyc_core_sdk.SdkClient.rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 2}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1.4142135623730951}}, "df": 5, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 3}}}}}}}}}}, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}, "jpyc_core_sdk.utils.enumerate_supported_networks": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 23}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 5}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 19}, "d": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 8}}}}}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 12}}}, "e": {"docs": {}, "df": 0, "b": {"3": {"docs": {"jpyc_core_sdk.SdkClient.w3": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 5}, "docs": {}, "df": 0}, "i": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.7320508075688772}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 2.23606797749979}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "y": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}, "jpyc_core_sdk.utils.NetworkNotSupported": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}}, "df": 1, "s": {"3": {"2": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}}, "df": 14}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 3}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "v": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.7320508075688772}}, "df": 4, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 3}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 3}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}, "jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 20, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.7320508075688772}}, "df": 7}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2, "m": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1.4142135623730951}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 2}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 2}}, "df": 16}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.SdkClient.__init__": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.approve": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionFailed": {"tf": 1}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1}}, "df": 15}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1}}, "df": 7}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 13}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.get_artifacts": {"tf": 1.7320508075688772}, "jpyc_core_sdk.utils.resolve_artifacts_file_path": {"tf": 1.4142135623730951}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.account": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 2}}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.SdkClient.set_custom_provider": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"2": {"5": {"6": {"docs": {"jpyc_core_sdk.JPYC.nonces": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.7320508075688772}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.remove_decimals": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 13}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}}, "df": 5}, "docs": {}, "df": 0}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1.4142135623730951}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 3}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.set_default_provider": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}}, "df": 1, "s": {"docs": {"jpyc_core_sdk.utils.remove_decimals": {"tf": 1}, "jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.utils.restore_decimals": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.JPYC.permit": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.SdkClient.set_account": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"jpyc_core_sdk.utils.TransactionFailed": {"tf": 1.4142135623730951}, "jpyc_core_sdk.utils.TransactionSimulationFailed": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.JPYC.mint": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"jpyc_core_sdk.JPYC.is_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.configure_minter": {"tf": 2.449489742783178}}, "df": 2}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"jpyc_core_sdk.SdkClient.get_account_address": {"tf": 1}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1}, "jpyc_core_sdk.utils.get_artifacts": {"tf": 1}, "jpyc_core_sdk.utils.get_default_rpc_endpoint": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"jpyc_core_sdk.utils.InvalidBytes32": {"tf": 1}, "jpyc_core_sdk.utils.InvalidChecksumAddress": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint8": {"tf": 1}, "jpyc_core_sdk.utils.InvalidUint256": {"tf": 1}}, "df": 4}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {"jpyc_core_sdk.JPYC.__init__": {"tf": 2}, "jpyc_core_sdk.utils.get_proxy_address": {"tf": 1.4142135623730951}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"jpyc_core_sdk.JPYC.configure_minter": {"tf": 1}, "jpyc_core_sdk.JPYC.mint": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_from": {"tf": 1}, "jpyc_core_sdk.JPYC.transfer_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.receive_with_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.cancel_authorization": {"tf": 1}, "jpyc_core_sdk.JPYC.approve": {"tf": 1}, "jpyc_core_sdk.JPYC.increase_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.decrease_allowance": {"tf": 1}, "jpyc_core_sdk.JPYC.permit": {"tf": 1}}, "df": 11}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"jpyc_core_sdk.utils.AccountNotInitialized": {"tf": 1}}, "df": 1}}}}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough.