diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 37abda011..419619a57 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -483,6 +483,32 @@ dependencies = [ "thiserror", ] +[[package]] +name = "coins-ledger" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "863cc93703bfc6f02f4401b42663b767783179f4080d89a0c4876766c7c0fb78" +dependencies = [ + "async-trait", + "byteorder", + "cfg-if", + "futures", + "hex", + "hidapi-rusb", + "js-sys", + "lazy_static", + "libc", + "log", + "matches", + "nix", + "serde", + "tap", + "thiserror", + "tracing", + "wasm-bindgen", + "wasm-bindgen-futures", +] + [[package]] name = "colorchoice" version = "1.0.0" @@ -578,7 +604,7 @@ dependencies = [ "autocfg", "cfg-if", "crossbeam-utils", - "memoffset", + "memoffset 0.9.0", "scopeguard", ] @@ -1086,11 +1112,15 @@ dependencies = [ "async-trait", "coins-bip32", "coins-bip39", + "coins-ledger", "elliptic-curve", "eth-keystore", "ethers-core", + "futures-executor", + "futures-util", "hex", "rand", + "semver", "sha2 0.10.7", "thiserror", "tracing", @@ -1526,6 +1556,18 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" +[[package]] +name = "hidapi-rusb" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee9fc48be9eab25c28b413742b38b57b85c10b5efd2d47ef013f82335cbecc8e" +dependencies = [ + "cc", + "libc", + "pkg-config", + "rusb", +] + [[package]] name = "hmac" version = "0.12.1" @@ -1846,6 +1888,18 @@ version = "0.2.142" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317" +[[package]] +name = "libusb1-sys" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9d0e2afce4245f2c9a418511e5af8718bcaf2fa408aefb259504d1a9cb25f27" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + [[package]] name = "linux-raw-sys" version = "0.3.6" @@ -1877,6 +1931,12 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" +[[package]] +name = "matches" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" + [[package]] name = "md-5" version = "0.10.5" @@ -1892,6 +1952,15 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" +[[package]] +name = "memoffset" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" +dependencies = [ + "autocfg", +] + [[package]] name = "memoffset" version = "0.9.0" @@ -1952,6 +2021,20 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" +[[package]] +name = "nix" +version = "0.26.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" +dependencies = [ + "bitflags", + "cfg-if", + "libc", + "memoffset 0.7.1", + "pin-utils", + "static_assertions", +] + [[package]] name = "nu-ansi-term" version = "0.46.0" @@ -2409,6 +2492,7 @@ dependencies = [ "anyhow", "clap", "ethers", + "ethers-signers", "eyre", "graphql_client", "hex", @@ -2632,6 +2716,16 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "rusb" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44a8c36914f9b1a3be712c1dfa48c9b397131f9a75707e570a391735f785c5d1" +dependencies = [ + "libc", + "libusb1-sys", +] + [[package]] name = "rust-bigint" version = "1.2.0" @@ -3000,9 +3094,9 @@ dependencies = [ [[package]] name = "signature" -version = "2.1.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500" +checksum = "8fe458c98333f9c8152221191a77e2a44e8325d0193484af2e9421a53019e57d" dependencies = [ "digest 0.10.7", "rand_core", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 3d89d74d2..88f3be98d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -24,4 +24,5 @@ ethers = "2.0.7" serde_json = "1.0.96" eyre = "0.6" spinners = "4.1.0" -hex = "0.4.3" \ No newline at end of file +hex = "0.4.3" +ethers-signers = { version = "2.0.8", features = ["ledger"] } diff --git a/cli/src/cli/abis/IInterpreterStoreV1.json b/cli/src/cli/abis/IInterpreterStoreV1.json new file mode 100644 index 000000000..8f2323c31 --- /dev/null +++ b/cli/src/cli/abis/IInterpreterStoreV1.json @@ -0,0 +1,675 @@ +{ + "abi": [ + { + "inputs": [ + { + "internalType": "FullyQualifiedNamespace", + "name": "namespace", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "key", + "type": "uint256" + } + ], + "name": "get", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "StateNamespace", + "name": "namespace", + "type": "uint256" + }, + { + "internalType": "uint256[]", + "name": "kvs", + "type": "uint256[]" + } + ], + "name": "set", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": { + "object": "0x", + "sourceMap": "", + "linkReferences": {} + }, + "deployedBytecode": { + "object": "0x", + "sourceMap": "", + "linkReferences": {} + }, + "methodIdentifiers": { + "get(uint256,uint256)": "669e48aa", + "set(uint256,uint256[])": "946aadc6" + }, + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"FullyQualifiedNamespace\",\"name\":\"namespace\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"key\",\"type\":\"uint256\"}],\"name\":\"get\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"StateNamespace\",\"name\":\"namespace\",\"type\":\"uint256\"},{\"internalType\":\"uint256[]\",\"name\":\"kvs\",\"type\":\"uint256[]\"}],\"name\":\"set\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"get(uint256,uint256)\":{\"params\":{\"key\":\"The key to get the value for within the namespace.\",\"namespace\":\"The fully qualified namespace to get a single value for.\"},\"returns\":{\"_0\":\"The value OR ZERO IF NOT SET.\"}},\"set(uint256,uint256[])\":{\"params\":{\"kvs\":\"The list of changes to apply to the store's internal state.\",\"namespace\":\"The unqualified namespace for the set that MUST be fully qualified by the `IInterpreterStoreV1` to prevent key collisions between callers. The fully qualified namespace forms a compound key with the keys for each value to set.\"}}},\"title\":\"IInterpreterStoreV1\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"get(uint256,uint256)\":{\"notice\":\"Given a fully qualified namespace and key, return the associated value. Ostensibly the interpreter can use this to implement opcodes that read previously set values. The interpreter MUST apply the same qualification logic as the store that it uses to guarantee consistent round tripping of data and prevent malicious behaviours. Technically also allows onchain reads of any set value from any contract, not just interpreters, but in this case readers MUST be aware and handle inconsistencies between get and set while the state changes are still in memory in the calling context and haven't yet been persisted to the store. `IInterpreterStoreV1` uses the same fallback behaviour for unset keys as Solidity. Specifically, any UNSET VALUES SILENTLY FALLBACK TO `0`.\"},\"set(uint256,uint256[])\":{\"notice\":\"Mutates the interpreter store in bulk. The bulk values are provided in the form of a `uint256[]` which can be treated e.g. as pairwise keys and values to be stored in a Solidity mapping. The `IInterpreterStoreV1` defines the meaning of the `uint256[]` for its own storage logic.\"}},\"notice\":\"Tracks state changes on behalf of an interpreter. A single store can handle state changes for many calling contracts, many interpreters and many expressions. The store is responsible for ensuring that applying these state changes is safe from key collisions with calls to `set` from different `msg.sender` callers. I.e. it MUST NOT be possible for a caller to modify the state changes associated with some other caller. The store defines the shape of its own state changes, which is opaque to the calling contract. For example, some store may treat the list of state changes as a pairwise key/value set, and some other store may treat it as a literal list to be stored as-is. Each interpreter decides for itself which store to use based on the compatibility of its own opcodes. The store MUST assume the state changes have been corrupted by the calling contract due to bugs or malicious intent, and enforce state isolation between callers despite arbitrarily invalid state changes. The store MUST revert if it can detect invalid state changes, such as a key/value list having an odd number of items, but this MAY NOT be possible if the corruption is undetectable.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/interface/IInterpreterStoreV1.sol\":\"IInterpreterStoreV1\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"appendCBOR\":false,\"bytecodeHash\":\"none\"},\"optimizer\":{\"enabled\":true,\"runs\":1000000},\"remappings\":[\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":rain.chainlink/=lib/rain.chainlink/src/\",\":rain.datacontract/=lib/rain.datacontract/src/\",\":rain.erc1820/=lib/rain.erc1820/src/\",\":rain.lib.hash/=lib/rain.lib.memkv/lib/rain.lib.hash/src/\",\":rain.lib.memkv/=lib/rain.lib.memkv/src/\",\":rain.lib.typecast/=lib/rain.lib.typecast/src/\",\":rain.math.fixedpoint/=lib/rain.chainlink/lib/rain.math.fixedpoint/src/\",\":rain.math.saturating/=lib/rain.chainlink/lib/rain.math.fixedpoint/lib/rain.math.saturating/src/\",\":rain.metadata/=lib/rain.metadata/src/\",\":rain.solmem/=lib/rain.solmem/src/\"]},\"sources\":{\"src/interface/IInterpreterStoreV1.sol\":{\"keccak256\":\"0xbd9baa8cd30406576f876a76f1c08396561ba93131741af338f63e2414e20619\",\"license\":\"CAL\",\"urls\":[\"bzz-raw://30bb6f09d8b8f27f77e6c44591c4f2070286a91dad202043cf2351ae802e3df5\",\"dweb:/ipfs/QmRz5pfzf5w84iNmKaYYbqP8oQywzc5xbd3xzKmxgFyf9y\"]},\"src/interface/IInterpreterV1.sol\":{\"keccak256\":\"0xebde08ca2e1c25fc733e0bb8867598715f8ba79772f86db1c8960ad7d68a5293\",\"license\":\"CAL\",\"urls\":[\"bzz-raw://b93fb28a09aeea4afe7f0d4afc67354c0fa538e5a9b274b0c5f10ed1dd6b6b00\",\"dweb:/ipfs/QmatNhoHRSJ1ZvoCNo61YMt9jb1vvEkWy3mkcoPkB4FFA9\"]}},\"version\":1}", + "metadata": { + "compiler": { + "version": "0.8.19+commit.7dd6d404" + }, + "language": "Solidity", + "output": { + "abi": [ + { + "inputs": [ + { + "internalType": "FullyQualifiedNamespace", + "name": "namespace", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "key", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function", + "name": "get", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ] + }, + { + "inputs": [ + { + "internalType": "StateNamespace", + "name": "namespace", + "type": "uint256" + }, + { + "internalType": "uint256[]", + "name": "kvs", + "type": "uint256[]" + } + ], + "stateMutability": "nonpayable", + "type": "function", + "name": "set" + } + ], + "devdoc": { + "kind": "dev", + "methods": { + "get(uint256,uint256)": { + "params": { + "key": "The key to get the value for within the namespace.", + "namespace": "The fully qualified namespace to get a single value for." + }, + "returns": { + "_0": "The value OR ZERO IF NOT SET." + } + }, + "set(uint256,uint256[])": { + "params": { + "kvs": "The list of changes to apply to the store's internal state.", + "namespace": "The unqualified namespace for the set that MUST be fully qualified by the `IInterpreterStoreV1` to prevent key collisions between callers. The fully qualified namespace forms a compound key with the keys for each value to set." + } + } + }, + "version": 1 + }, + "userdoc": { + "kind": "user", + "methods": { + "get(uint256,uint256)": { + "notice": "Given a fully qualified namespace and key, return the associated value. Ostensibly the interpreter can use this to implement opcodes that read previously set values. The interpreter MUST apply the same qualification logic as the store that it uses to guarantee consistent round tripping of data and prevent malicious behaviours. Technically also allows onchain reads of any set value from any contract, not just interpreters, but in this case readers MUST be aware and handle inconsistencies between get and set while the state changes are still in memory in the calling context and haven't yet been persisted to the store. `IInterpreterStoreV1` uses the same fallback behaviour for unset keys as Solidity. Specifically, any UNSET VALUES SILENTLY FALLBACK TO `0`." + }, + "set(uint256,uint256[])": { + "notice": "Mutates the interpreter store in bulk. The bulk values are provided in the form of a `uint256[]` which can be treated e.g. as pairwise keys and values to be stored in a Solidity mapping. The `IInterpreterStoreV1` defines the meaning of the `uint256[]` for its own storage logic." + } + }, + "version": 1 + } + }, + "settings": { + "remappings": [ + ":ds-test/=lib/forge-std/lib/ds-test/src/", + ":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", + ":forge-std/=lib/forge-std/src/", + ":openzeppelin-contracts/=lib/openzeppelin-contracts/", + ":openzeppelin/=lib/openzeppelin-contracts/contracts/", + ":rain.chainlink/=lib/rain.chainlink/src/", + ":rain.datacontract/=lib/rain.datacontract/src/", + ":rain.erc1820/=lib/rain.erc1820/src/", + ":rain.lib.hash/=lib/rain.lib.memkv/lib/rain.lib.hash/src/", + ":rain.lib.memkv/=lib/rain.lib.memkv/src/", + ":rain.lib.typecast/=lib/rain.lib.typecast/src/", + ":rain.math.fixedpoint/=lib/rain.chainlink/lib/rain.math.fixedpoint/src/", + ":rain.math.saturating/=lib/rain.chainlink/lib/rain.math.fixedpoint/lib/rain.math.saturating/src/", + ":rain.metadata/=lib/rain.metadata/src/", + ":rain.solmem/=lib/rain.solmem/src/" + ], + "optimizer": { + "enabled": true, + "runs": 1000000 + }, + "metadata": { + "bytecodeHash": "none", + "appendCBOR": false + }, + "compilationTarget": { + "src/interface/IInterpreterStoreV1.sol": "IInterpreterStoreV1" + }, + "libraries": {} + }, + "sources": { + "src/interface/IInterpreterStoreV1.sol": { + "keccak256": "0xbd9baa8cd30406576f876a76f1c08396561ba93131741af338f63e2414e20619", + "urls": [ + "bzz-raw://30bb6f09d8b8f27f77e6c44591c4f2070286a91dad202043cf2351ae802e3df5", + "dweb:/ipfs/QmRz5pfzf5w84iNmKaYYbqP8oQywzc5xbd3xzKmxgFyf9y" + ], + "license": "CAL" + }, + "src/interface/IInterpreterV1.sol": { + "keccak256": "0xebde08ca2e1c25fc733e0bb8867598715f8ba79772f86db1c8960ad7d68a5293", + "urls": [ + "bzz-raw://b93fb28a09aeea4afe7f0d4afc67354c0fa538e5a9b274b0c5f10ed1dd6b6b00", + "dweb:/ipfs/QmatNhoHRSJ1ZvoCNo61YMt9jb1vvEkWy3mkcoPkB4FFA9" + ], + "license": "CAL" + } + }, + "version": 1 + }, + "ast": { + "absolutePath": "src/interface/IInterpreterStoreV1.sol", + "id": 48686, + "exportedSymbols": { + "DEFAULT_STATE_NAMESPACE": [ + 48704 + ], + "EncodedDispatch": [ + 48692 + ], + "FullyQualifiedNamespace": [ + 48653 + ], + "IInterpreterStoreV1": [ + 48685 + ], + "IInterpreterV1": [ + 48735 + ], + "NO_STORE": [ + 48662 + ], + "Operand": [ + 48696 + ], + "SourceIndex": [ + 48690 + ], + "StateNamespace": [ + 48694 + ] + }, + "nodeType": "SourceUnit", + "src": "32:3887:56", + "nodes": [ + { + "id": 48650, + "nodeType": "PragmaDirective", + "src": "32:24:56", + "nodes": [], + "literals": [ + "solidity", + "^", + "0.8", + ".18" + ] + }, + { + "id": 48651, + "nodeType": "ImportDirective", + "src": "58:30:56", + "nodes": [], + "absolutePath": "src/interface/IInterpreterV1.sol", + "file": "./IInterpreterV1.sol", + "nameLocation": "-1:-1:-1", + "scope": 48686, + "sourceUnit": 48736, + "symbolAliases": [], + "unitAlias": "" + }, + { + "id": 48653, + "nodeType": "UserDefinedValueTypeDefinition", + "src": "574:40:56", + "nodes": [], + "canonicalName": "FullyQualifiedNamespace", + "name": "FullyQualifiedNamespace", + "nameLocation": "579:23:56", + "underlyingType": { + "id": 48652, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "606:7:56", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + }, + { + "id": 48662, + "nodeType": "VariableDeclaration", + "src": "616:71:56", + "nodes": [], + "constant": true, + "mutability": "constant", + "name": "NO_STORE", + "nameLocation": "645:8:56", + "scope": 48686, + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_contract$_IInterpreterStoreV1_$48685", + "typeString": "contract IInterpreterStoreV1" + }, + "typeName": { + "id": 48655, + "nodeType": "UserDefinedTypeName", + "pathNode": { + "id": 48654, + "name": "IInterpreterStoreV1", + "nameLocations": [ + "616:19:56" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 48685, + "src": "616:19:56" + }, + "referencedDeclaration": 48685, + "src": "616:19:56", + "typeDescriptions": { + "typeIdentifier": "t_contract$_IInterpreterStoreV1_$48685", + "typeString": "contract IInterpreterStoreV1" + } + }, + "value": { + "arguments": [ + { + "arguments": [ + { + "hexValue": "30", + "id": 48659, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "684:1:56", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 48658, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "676:7:56", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 48657, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "676:7:56", + "typeDescriptions": {} + } + }, + "id": 48660, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "676:10:56", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + } + ], + "id": 48656, + "name": "IInterpreterStoreV1", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 48685, + "src": "656:19:56", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_contract$_IInterpreterStoreV1_$48685_$", + "typeString": "type(contract IInterpreterStoreV1)" + } + }, + "id": 48661, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "656:31:56", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_contract$_IInterpreterStoreV1_$48685", + "typeString": "contract IInterpreterStoreV1" + } + }, + "visibility": "internal" + }, + { + "id": 48685, + "nodeType": "ContractDefinition", + "src": "1977:1941:56", + "nodes": [ + { + "id": 48673, + "nodeType": "FunctionDefinition", + "src": "2687:72:56", + "nodes": [], + "documentation": { + "id": 48664, + "nodeType": "StructuredDocumentation", + "src": "2013:669:56", + "text": "Mutates the interpreter store in bulk. The bulk values are provided in\n the form of a `uint256[]` which can be treated e.g. as pairwise keys and\n values to be stored in a Solidity mapping. The `IInterpreterStoreV1`\n defines the meaning of the `uint256[]` for its own storage logic.\n @param namespace The unqualified namespace for the set that MUST be\n fully qualified by the `IInterpreterStoreV1` to prevent key collisions\n between callers. The fully qualified namespace forms a compound key with\n the keys for each value to set.\n @param kvs The list of changes to apply to the store's internal state." + }, + "functionSelector": "946aadc6", + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "set", + "nameLocation": "2696:3:56", + "parameters": { + "id": 48671, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 48667, + "mutability": "mutable", + "name": "namespace", + "nameLocation": "2715:9:56", + "nodeType": "VariableDeclaration", + "scope": 48673, + "src": "2700:24:56", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_userDefinedValueType$_StateNamespace_$48694", + "typeString": "StateNamespace" + }, + "typeName": { + "id": 48666, + "nodeType": "UserDefinedTypeName", + "pathNode": { + "id": 48665, + "name": "StateNamespace", + "nameLocations": [ + "2700:14:56" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 48694, + "src": "2700:14:56" + }, + "referencedDeclaration": 48694, + "src": "2700:14:56", + "typeDescriptions": { + "typeIdentifier": "t_userDefinedValueType$_StateNamespace_$48694", + "typeString": "StateNamespace" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 48670, + "mutability": "mutable", + "name": "kvs", + "nameLocation": "2745:3:56", + "nodeType": "VariableDeclaration", + "scope": 48673, + "src": "2726:22:56", + "stateVariable": false, + "storageLocation": "calldata", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr", + "typeString": "uint256[]" + }, + "typeName": { + "baseType": { + "id": 48668, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "2726:7:56", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 48669, + "nodeType": "ArrayTypeName", + "src": "2726:9:56", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr", + "typeString": "uint256[]" + } + }, + "visibility": "internal" + } + ], + "src": "2699:50:56" + }, + "returnParameters": { + "id": 48672, + "nodeType": "ParameterList", + "parameters": [], + "src": "2758:0:56" + }, + "scope": 48685, + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "external" + }, + { + "id": 48684, + "nodeType": "FunctionDefinition", + "src": "3823:93:56", + "nodes": [], + "documentation": { + "id": 48674, + "nodeType": "StructuredDocumentation", + "src": "2765:1053:56", + "text": "Given a fully qualified namespace and key, return the associated value.\n Ostensibly the interpreter can use this to implement opcodes that read\n previously set values. The interpreter MUST apply the same qualification\n logic as the store that it uses to guarantee consistent round tripping of\n data and prevent malicious behaviours. Technically also allows onchain\n reads of any set value from any contract, not just interpreters, but in\n this case readers MUST be aware and handle inconsistencies between get\n and set while the state changes are still in memory in the calling\n context and haven't yet been persisted to the store.\n `IInterpreterStoreV1` uses the same fallback behaviour for unset keys as\n Solidity. Specifically, any UNSET VALUES SILENTLY FALLBACK TO `0`.\n @param namespace The fully qualified namespace to get a single value for.\n @param key The key to get the value for within the namespace.\n @return The value OR ZERO IF NOT SET." + }, + "functionSelector": "669e48aa", + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "get", + "nameLocation": "3832:3:56", + "parameters": { + "id": 48680, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 48677, + "mutability": "mutable", + "name": "namespace", + "nameLocation": "3860:9:56", + "nodeType": "VariableDeclaration", + "scope": 48684, + "src": "3836:33:56", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_userDefinedValueType$_FullyQualifiedNamespace_$48653", + "typeString": "FullyQualifiedNamespace" + }, + "typeName": { + "id": 48676, + "nodeType": "UserDefinedTypeName", + "pathNode": { + "id": 48675, + "name": "FullyQualifiedNamespace", + "nameLocations": [ + "3836:23:56" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 48653, + "src": "3836:23:56" + }, + "referencedDeclaration": 48653, + "src": "3836:23:56", + "typeDescriptions": { + "typeIdentifier": "t_userDefinedValueType$_FullyQualifiedNamespace_$48653", + "typeString": "FullyQualifiedNamespace" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 48679, + "mutability": "mutable", + "name": "key", + "nameLocation": "3879:3:56", + "nodeType": "VariableDeclaration", + "scope": 48684, + "src": "3871:11:56", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 48678, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "3871:7:56", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "3835:48:56" + }, + "returnParameters": { + "id": 48683, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 48682, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 48684, + "src": "3907:7:56", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 48681, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "3907:7:56", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "3906:9:56" + }, + "scope": 48685, + "stateMutability": "view", + "virtual": false, + "visibility": "external" + } + ], + "abstract": false, + "baseContracts": [], + "canonicalName": "IInterpreterStoreV1", + "contractDependencies": [], + "contractKind": "interface", + "documentation": { + "id": 48663, + "nodeType": "StructuredDocumentation", + "src": "690:1287:56", + "text": "@title IInterpreterStoreV1\n @notice Tracks state changes on behalf of an interpreter. A single store can\n handle state changes for many calling contracts, many interpreters and many\n expressions. The store is responsible for ensuring that applying these state\n changes is safe from key collisions with calls to `set` from different\n `msg.sender` callers. I.e. it MUST NOT be possible for a caller to modify the\n state changes associated with some other caller.\n The store defines the shape of its own state changes, which is opaque to the\n calling contract. For example, some store may treat the list of state changes\n as a pairwise key/value set, and some other store may treat it as a literal\n list to be stored as-is.\n Each interpreter decides for itself which store to use based on the\n compatibility of its own opcodes.\n The store MUST assume the state changes have been corrupted by the calling\n contract due to bugs or malicious intent, and enforce state isolation between\n callers despite arbitrarily invalid state changes. The store MUST revert if\n it can detect invalid state changes, such as a key/value list having an odd\n number of items, but this MAY NOT be possible if the corruption is\n undetectable." + }, + "fullyImplemented": false, + "linearizedBaseContracts": [ + 48685 + ], + "name": "IInterpreterStoreV1", + "nameLocation": "1987:19:56", + "scope": 48686, + "usedErrors": [] + } + ], + "license": "CAL" + }, + "id": 56 + } \ No newline at end of file diff --git a/cli/src/cli/abis/IInterpreterV1.json b/cli/src/cli/abis/IInterpreterV1.json new file mode 100644 index 000000000..752ecb901 --- /dev/null +++ b/cli/src/cli/abis/IInterpreterV1.json @@ -0,0 +1,811 @@ +{ + "abi": [ + { + "inputs": [ + { + "internalType": "contract IInterpreterStoreV1", + "name": "store", + "type": "address" + }, + { + "internalType": "StateNamespace", + "name": "namespace", + "type": "uint256" + }, + { + "internalType": "EncodedDispatch", + "name": "dispatch", + "type": "uint256" + }, + { + "internalType": "uint256[][]", + "name": "context", + "type": "uint256[][]" + } + ], + "name": "eval", + "outputs": [ + { + "internalType": "uint256[]", + "name": "stack", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "kvs", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "functionPointers", + "outputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": { + "object": "0x", + "sourceMap": "", + "linkReferences": {} + }, + "deployedBytecode": { + "object": "0x", + "sourceMap": "", + "linkReferences": {} + }, + "methodIdentifiers": { + "eval(address,uint256,uint256,uint256[][])": "6715f825", + "functionPointers()": "f933c72f" + }, + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IInterpreterStoreV1\",\"name\":\"store\",\"type\":\"address\"},{\"internalType\":\"StateNamespace\",\"name\":\"namespace\",\"type\":\"uint256\"},{\"internalType\":\"EncodedDispatch\",\"name\":\"dispatch\",\"type\":\"uint256\"},{\"internalType\":\"uint256[][]\",\"name\":\"context\",\"type\":\"uint256[][]\"}],\"name\":\"eval\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"stack\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"kvs\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"functionPointers\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"eval(address,uint256,uint256,uint256[][])\":{\"params\":{\"context\":\"A 2-dimensional array of data that can be indexed into at runtime by the interpreter. The calling contract is responsible for ensuring the authenticity and completeness of context data. The interpreter MUST revert at runtime if an expression attempts to index into some context value that is not provided by the caller. This implies that context reads cannot be checked for out of bounds reads at deploy time, as the runtime context MAY be provided in a different shape to what the expression is expecting. Same as `eval` but allowing the caller to specify a namespace under which the state changes will be applied. The interpeter MUST ensure that keys will never collide across namespaces, even if, for example: - The calling contract is malicious and attempts to craft a collision with state changes from another contract - The expression is malicious and attempts to craft a collision with other expressions evaluated by the same calling contract A malicious entity MAY have access to significant offchain resources to attempt to precompute key collisions through brute force. The collision resistance of namespaces should be comparable or equivalent to the collision resistance of the hashing algorithms employed by the blockchain itself, such as the design of `mapping` in Solidity that hashes each nested key to produce a collision resistant compound key.\",\"dispatch\":\"All the information required for the interpreter to load an expression, select an entrypoint and return the values expected by the caller. The interpreter MAY encode dispatches differently to `LibEncodedDispatch` but this WILL negatively impact compatibility for calling contracts that hardcode the encoding logic.\",\"namespace\":\"The state namespace that will be fully qualified by the interpreter at runtime in order to perform gets on the underlying store. MUST be the same namespace passed to the store by the calling contract when sending the resulting key/value items to storage.\",\"store\":\"The storage contract that the returned key/value pairs MUST be passed to IF the calling contract is in a non-static calling context. Static calling contexts MUST pass `address(0)`.\"},\"returns\":{\"kvs\":\"A list of pairwise key/value items to be saved in the store.\",\"stack\":\"The list of values produced by evaluating the expression. MUST NOT be longer than the maximum length specified by `dispatch`, if applicable.\"}}},\"title\":\"IInterpreterV1 Interface into a standard interpreter that supports: - evaluating `view` logic deployed onchain by an `IExpressionDeployerV1` - receiving arbitrary `uint256[][]` supporting context to be made available to the evaluated logic - handling subsequent state changes in bulk in response to evaluated logic - namespacing state changes according to the caller's preferences to avoid unwanted key collisions - exposing its internal function pointers to support external precompilation of logic for more gas efficient runtime evaluation by the interpreter The interface is designed to be stable across many versions and implementations of an interpreter, balancing minimalism with features required for a general purpose onchain interpreted compute environment. The security model of an interpreter is that it MUST be resilient to malicious expressions even if they dispatch arbitrary internal function pointers during an eval. The interpreter MAY return garbage or exhibit undefined behaviour or error during an eval, _provided that no state changes are persisted_ e.g. in storage, such that only the caller that specifies the malicious expression can be negatively impacted by the result. In turn, the caller must guard itself against arbitrarily corrupt/malicious reverts and return values from any interpreter that it requests an expression from. And so on and so forth up to the externally owned account (EOA) who signs the transaction and agrees to a specific combination of contracts, expressions and interpreters, who can presumably make an informed decision about which ones to trust to get the job done. The state changes for an interpreter are expected to be produces by an `eval` and passed to the `IInterpreterStoreV1` returned by the eval, as-is by the caller, after the caller has had an opportunity to apply their own intermediate logic such as reentrancy defenses against malicious interpreters. The interpreter is free to structure the state changes however it wants but MUST guard against the calling contract corrupting the changes between `eval` and `set`. For example a store could sandbox storage writes per-caller so that a malicious caller can only damage their own state changes, while honest callers respect, benefit from and are protected by the interpreter store's state change handling. The two step eval-state model allows eval to be read-only which provides security guarantees for the caller such as no stateful reentrancy, either from the interpreter or some contract interface used by some word, while still allowing for storage writes. As the storage writes happen on the interpreter rather than the caller (c.f. delegate call) the caller DOES NOT need to trust the interpreter, which allows for permissionless selection of interpreters by end users. Delegate call always implies an admin key on the caller because the delegatee contract can write arbitrarily to the state of the delegator, which severely limits the generality of contract composition.\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"eval(address,uint256,uint256,uint256[][])\":{\"notice\":\"The raison d'etre for an interpreter. Given some expression and per-call additional contextual data, produce a stack of results and a set of state changes that the caller MAY OPTIONALLY pass back to be persisted by a call to `IInterpreterStoreV1.set`.\"},\"functionPointers()\":{\"notice\":\"Exposes the function pointers as `uint16` values packed into a single `bytes` in the same order as they would be indexed into by opcodes. For example, if opcode `2` should dispatch function at position `0x1234` then the start of the returned bytes would be `0xXXXXXXXX1234` where `X` is a placeholder for the function pointers of opcodes `0` and `1`. `IExpressionDeployerV1` contracts use these function pointers to \\\"compile\\\" the expression into something that an interpreter can dispatch directly without paying gas to lookup the same at runtime. As the validity of any integrity check and subsequent dispatch is highly sensitive to both the function pointers and overall bytecode of the interpreter, `IExpressionDeployerV1` contracts SHOULD implement guards against accidentally being deployed onchain paired against an unknown interpreter. It is very easy for an apparent compatible pairing to be subtly and critically incompatible due to addition/removal/reordering of opcodes and compiler optimisations on the interpreter bytecode. This MAY return different values during construction vs. all other times after the interpreter has been successfully deployed onchain. DO NOT rely on function pointers reported during contract construction.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/interface/IInterpreterV1.sol\":\"IInterpreterV1\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"appendCBOR\":false,\"bytecodeHash\":\"none\"},\"optimizer\":{\"enabled\":true,\"runs\":1000000},\"remappings\":[\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":rain.chainlink/=lib/rain.chainlink/src/\",\":rain.datacontract/=lib/rain.datacontract/src/\",\":rain.erc1820/=lib/rain.erc1820/src/\",\":rain.lib.hash/=lib/rain.lib.memkv/lib/rain.lib.hash/src/\",\":rain.lib.memkv/=lib/rain.lib.memkv/src/\",\":rain.lib.typecast/=lib/rain.lib.typecast/src/\",\":rain.math.fixedpoint/=lib/rain.chainlink/lib/rain.math.fixedpoint/src/\",\":rain.math.saturating/=lib/rain.chainlink/lib/rain.math.fixedpoint/lib/rain.math.saturating/src/\",\":rain.metadata/=lib/rain.metadata/src/\",\":rain.solmem/=lib/rain.solmem/src/\"]},\"sources\":{\"src/interface/IInterpreterStoreV1.sol\":{\"keccak256\":\"0xbd9baa8cd30406576f876a76f1c08396561ba93131741af338f63e2414e20619\",\"license\":\"CAL\",\"urls\":[\"bzz-raw://30bb6f09d8b8f27f77e6c44591c4f2070286a91dad202043cf2351ae802e3df5\",\"dweb:/ipfs/QmRz5pfzf5w84iNmKaYYbqP8oQywzc5xbd3xzKmxgFyf9y\"]},\"src/interface/IInterpreterV1.sol\":{\"keccak256\":\"0xebde08ca2e1c25fc733e0bb8867598715f8ba79772f86db1c8960ad7d68a5293\",\"license\":\"CAL\",\"urls\":[\"bzz-raw://b93fb28a09aeea4afe7f0d4afc67354c0fa538e5a9b274b0c5f10ed1dd6b6b00\",\"dweb:/ipfs/QmatNhoHRSJ1ZvoCNo61YMt9jb1vvEkWy3mkcoPkB4FFA9\"]}},\"version\":1}", + "metadata": { + "compiler": { + "version": "0.8.19+commit.7dd6d404" + }, + "language": "Solidity", + "output": { + "abi": [ + { + "inputs": [ + { + "internalType": "contract IInterpreterStoreV1", + "name": "store", + "type": "address" + }, + { + "internalType": "StateNamespace", + "name": "namespace", + "type": "uint256" + }, + { + "internalType": "EncodedDispatch", + "name": "dispatch", + "type": "uint256" + }, + { + "internalType": "uint256[][]", + "name": "context", + "type": "uint256[][]" + } + ], + "stateMutability": "view", + "type": "function", + "name": "eval", + "outputs": [ + { + "internalType": "uint256[]", + "name": "stack", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "kvs", + "type": "uint256[]" + } + ] + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "functionPointers", + "outputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ] + } + ], + "devdoc": { + "kind": "dev", + "methods": { + "eval(address,uint256,uint256,uint256[][])": { + "params": { + "context": "A 2-dimensional array of data that can be indexed into at runtime by the interpreter. The calling contract is responsible for ensuring the authenticity and completeness of context data. The interpreter MUST revert at runtime if an expression attempts to index into some context value that is not provided by the caller. This implies that context reads cannot be checked for out of bounds reads at deploy time, as the runtime context MAY be provided in a different shape to what the expression is expecting. Same as `eval` but allowing the caller to specify a namespace under which the state changes will be applied. The interpeter MUST ensure that keys will never collide across namespaces, even if, for example: - The calling contract is malicious and attempts to craft a collision with state changes from another contract - The expression is malicious and attempts to craft a collision with other expressions evaluated by the same calling contract A malicious entity MAY have access to significant offchain resources to attempt to precompute key collisions through brute force. The collision resistance of namespaces should be comparable or equivalent to the collision resistance of the hashing algorithms employed by the blockchain itself, such as the design of `mapping` in Solidity that hashes each nested key to produce a collision resistant compound key.", + "dispatch": "All the information required for the interpreter to load an expression, select an entrypoint and return the values expected by the caller. The interpreter MAY encode dispatches differently to `LibEncodedDispatch` but this WILL negatively impact compatibility for calling contracts that hardcode the encoding logic.", + "namespace": "The state namespace that will be fully qualified by the interpreter at runtime in order to perform gets on the underlying store. MUST be the same namespace passed to the store by the calling contract when sending the resulting key/value items to storage.", + "store": "The storage contract that the returned key/value pairs MUST be passed to IF the calling contract is in a non-static calling context. Static calling contexts MUST pass `address(0)`." + }, + "returns": { + "kvs": "A list of pairwise key/value items to be saved in the store.", + "stack": "The list of values produced by evaluating the expression. MUST NOT be longer than the maximum length specified by `dispatch`, if applicable." + } + } + }, + "version": 1 + }, + "userdoc": { + "kind": "user", + "methods": { + "eval(address,uint256,uint256,uint256[][])": { + "notice": "The raison d'etre for an interpreter. Given some expression and per-call additional contextual data, produce a stack of results and a set of state changes that the caller MAY OPTIONALLY pass back to be persisted by a call to `IInterpreterStoreV1.set`." + }, + "functionPointers()": { + "notice": "Exposes the function pointers as `uint16` values packed into a single `bytes` in the same order as they would be indexed into by opcodes. For example, if opcode `2` should dispatch function at position `0x1234` then the start of the returned bytes would be `0xXXXXXXXX1234` where `X` is a placeholder for the function pointers of opcodes `0` and `1`. `IExpressionDeployerV1` contracts use these function pointers to \"compile\" the expression into something that an interpreter can dispatch directly without paying gas to lookup the same at runtime. As the validity of any integrity check and subsequent dispatch is highly sensitive to both the function pointers and overall bytecode of the interpreter, `IExpressionDeployerV1` contracts SHOULD implement guards against accidentally being deployed onchain paired against an unknown interpreter. It is very easy for an apparent compatible pairing to be subtly and critically incompatible due to addition/removal/reordering of opcodes and compiler optimisations on the interpreter bytecode. This MAY return different values during construction vs. all other times after the interpreter has been successfully deployed onchain. DO NOT rely on function pointers reported during contract construction." + } + }, + "version": 1 + } + }, + "settings": { + "remappings": [ + ":ds-test/=lib/forge-std/lib/ds-test/src/", + ":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", + ":forge-std/=lib/forge-std/src/", + ":openzeppelin-contracts/=lib/openzeppelin-contracts/", + ":openzeppelin/=lib/openzeppelin-contracts/contracts/", + ":rain.chainlink/=lib/rain.chainlink/src/", + ":rain.datacontract/=lib/rain.datacontract/src/", + ":rain.erc1820/=lib/rain.erc1820/src/", + ":rain.lib.hash/=lib/rain.lib.memkv/lib/rain.lib.hash/src/", + ":rain.lib.memkv/=lib/rain.lib.memkv/src/", + ":rain.lib.typecast/=lib/rain.lib.typecast/src/", + ":rain.math.fixedpoint/=lib/rain.chainlink/lib/rain.math.fixedpoint/src/", + ":rain.math.saturating/=lib/rain.chainlink/lib/rain.math.fixedpoint/lib/rain.math.saturating/src/", + ":rain.metadata/=lib/rain.metadata/src/", + ":rain.solmem/=lib/rain.solmem/src/" + ], + "optimizer": { + "enabled": true, + "runs": 1000000 + }, + "metadata": { + "bytecodeHash": "none", + "appendCBOR": false + }, + "compilationTarget": { + "src/interface/IInterpreterV1.sol": "IInterpreterV1" + }, + "libraries": {} + }, + "sources": { + "src/interface/IInterpreterStoreV1.sol": { + "keccak256": "0xbd9baa8cd30406576f876a76f1c08396561ba93131741af338f63e2414e20619", + "urls": [ + "bzz-raw://30bb6f09d8b8f27f77e6c44591c4f2070286a91dad202043cf2351ae802e3df5", + "dweb:/ipfs/QmRz5pfzf5w84iNmKaYYbqP8oQywzc5xbd3xzKmxgFyf9y" + ], + "license": "CAL" + }, + "src/interface/IInterpreterV1.sol": { + "keccak256": "0xebde08ca2e1c25fc733e0bb8867598715f8ba79772f86db1c8960ad7d68a5293", + "urls": [ + "bzz-raw://b93fb28a09aeea4afe7f0d4afc67354c0fa538e5a9b274b0c5f10ed1dd6b6b00", + "dweb:/ipfs/QmatNhoHRSJ1ZvoCNo61YMt9jb1vvEkWy3mkcoPkB4FFA9" + ], + "license": "CAL" + } + }, + "version": 1 + }, + "ast": { + "absolutePath": "src/interface/IInterpreterV1.sol", + "id": 48736, + "exportedSymbols": { + "DEFAULT_STATE_NAMESPACE": [ + 48704 + ], + "EncodedDispatch": [ + 48692 + ], + "FullyQualifiedNamespace": [ + 48653 + ], + "IInterpreterStoreV1": [ + 48685 + ], + "IInterpreterV1": [ + 48735 + ], + "NO_STORE": [ + 48662 + ], + "Operand": [ + 48696 + ], + "SourceIndex": [ + 48690 + ], + "StateNamespace": [ + 48694 + ] + }, + "nodeType": "SourceUnit", + "src": "32:9059:57", + "nodes": [ + { + "id": 48687, + "nodeType": "PragmaDirective", + "src": "32:24:57", + "nodes": [], + "literals": [ + "solidity", + "^", + "0.8", + ".18" + ] + }, + { + "id": 48688, + "nodeType": "ImportDirective", + "src": "58:35:57", + "nodes": [], + "absolutePath": "src/interface/IInterpreterStoreV1.sol", + "file": "./IInterpreterStoreV1.sol", + "nameLocation": "-1:-1:-1", + "scope": 48736, + "sourceUnit": 48686, + "symbolAliases": [], + "unitAlias": "" + }, + { + "id": 48690, + "nodeType": "UserDefinedValueTypeDefinition", + "src": "303:27:57", + "nodes": [], + "canonicalName": "SourceIndex", + "name": "SourceIndex", + "nameLocation": "308:11:57", + "underlyingType": { + "id": 48689, + "name": "uint16", + "nodeType": "ElementaryTypeName", + "src": "323:6:57", + "typeDescriptions": { + "typeIdentifier": "t_uint16", + "typeString": "uint16" + } + } + }, + { + "id": 48692, + "nodeType": "UserDefinedValueTypeDefinition", + "src": "474:32:57", + "nodes": [], + "canonicalName": "EncodedDispatch", + "name": "EncodedDispatch", + "nameLocation": "479:15:57", + "underlyingType": { + "id": 48691, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "498:7:57", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + }, + { + "id": 48694, + "nodeType": "UserDefinedValueTypeDefinition", + "src": "679:31:57", + "nodes": [], + "canonicalName": "StateNamespace", + "name": "StateNamespace", + "nameLocation": "684:14:57", + "underlyingType": { + "id": 48693, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "702:7:57", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + }, + { + "id": 48696, + "nodeType": "UserDefinedValueTypeDefinition", + "src": "907:24:57", + "nodes": [], + "canonicalName": "Operand", + "name": "Operand", + "nameLocation": "912:7:57", + "underlyingType": { + "id": 48695, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "923:7:57", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + }, + { + "id": 48704, + "nodeType": "VariableDeclaration", + "src": "1072:72:57", + "nodes": [], + "constant": true, + "mutability": "constant", + "name": "DEFAULT_STATE_NAMESPACE", + "nameLocation": "1096:23:57", + "scope": 48736, + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_userDefinedValueType$_StateNamespace_$48694", + "typeString": "StateNamespace" + }, + "typeName": { + "id": 48699, + "nodeType": "UserDefinedTypeName", + "pathNode": { + "id": 48698, + "name": "StateNamespace", + "nameLocations": [ + "1072:14:57" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 48694, + "src": "1072:14:57" + }, + "referencedDeclaration": 48694, + "src": "1072:14:57", + "typeDescriptions": { + "typeIdentifier": "t_userDefinedValueType$_StateNamespace_$48694", + "typeString": "StateNamespace" + } + }, + "value": { + "arguments": [ + { + "hexValue": "30", + "id": 48702, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "1142:1:57", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "expression": { + "id": 48700, + "name": "StateNamespace", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 48694, + "src": "1122:14:57", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_userDefinedValueType$_StateNamespace_$48694_$", + "typeString": "type(StateNamespace)" + } + }, + "id": 48701, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "memberLocation": "1137:4:57", + "memberName": "wrap", + "nodeType": "MemberAccess", + "src": "1122:19:57", + "typeDescriptions": { + "typeIdentifier": "t_function_wrap_pure$_t_uint256_$returns$_t_userDefinedValueType$_StateNamespace_$48694_$", + "typeString": "function (uint256) pure returns (StateNamespace)" + } + }, + "id": 48703, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "1122:22:57", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_userDefinedValueType$_StateNamespace_$48694", + "typeString": "StateNamespace" + } + }, + "visibility": "internal" + }, + { + "id": 48735, + "nodeType": "ContractDefinition", + "src": "4350:4740:57", + "nodes": [ + { + "id": 48711, + "nodeType": "FunctionDefinition", + "src": "5785:65:57", + "nodes": [], + "documentation": { + "id": 48706, + "nodeType": "StructuredDocumentation", + "src": "4381:1399:57", + "text": "Exposes the function pointers as `uint16` values packed into a single\n `bytes` in the same order as they would be indexed into by opcodes. For\n example, if opcode `2` should dispatch function at position `0x1234` then\n the start of the returned bytes would be `0xXXXXXXXX1234` where `X` is\n a placeholder for the function pointers of opcodes `0` and `1`.\n `IExpressionDeployerV1` contracts use these function pointers to\n \"compile\" the expression into something that an interpreter can dispatch\n directly without paying gas to lookup the same at runtime. As the\n validity of any integrity check and subsequent dispatch is highly\n sensitive to both the function pointers and overall bytecode of the\n interpreter, `IExpressionDeployerV1` contracts SHOULD implement guards\n against accidentally being deployed onchain paired against an unknown\n interpreter. It is very easy for an apparent compatible pairing to be\n subtly and critically incompatible due to addition/removal/reordering of\n opcodes and compiler optimisations on the interpreter bytecode.\n This MAY return different values during construction vs. all other times\n after the interpreter has been successfully deployed onchain. DO NOT rely\n on function pointers reported during contract construction." + }, + "functionSelector": "f933c72f", + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "functionPointers", + "nameLocation": "5794:16:57", + "parameters": { + "id": 48707, + "nodeType": "ParameterList", + "parameters": [], + "src": "5810:2:57" + }, + "returnParameters": { + "id": 48710, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 48709, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 48711, + "src": "5836:12:57", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_bytes_memory_ptr", + "typeString": "bytes" + }, + "typeName": { + "id": 48708, + "name": "bytes", + "nodeType": "ElementaryTypeName", + "src": "5836:5:57", + "typeDescriptions": { + "typeIdentifier": "t_bytes_storage_ptr", + "typeString": "bytes" + } + }, + "visibility": "internal" + } + ], + "src": "5835:14:57" + }, + "scope": 48735, + "stateMutability": "view", + "virtual": false, + "visibility": "external" + }, + { + "id": 48734, + "nodeType": "FunctionDefinition", + "src": "8858:230:57", + "nodes": [], + "documentation": { + "id": 48712, + "nodeType": "StructuredDocumentation", + "src": "5856:2997:57", + "text": "The raison d'etre for an interpreter. Given some expression and per-call\n additional contextual data, produce a stack of results and a set of state\n changes that the caller MAY OPTIONALLY pass back to be persisted by a\n call to `IInterpreterStoreV1.set`.\n @param store The storage contract that the returned key/value pairs\n MUST be passed to IF the calling contract is in a non-static calling\n context. Static calling contexts MUST pass `address(0)`.\n @param namespace The state namespace that will be fully qualified by the\n interpreter at runtime in order to perform gets on the underlying store.\n MUST be the same namespace passed to the store by the calling contract\n when sending the resulting key/value items to storage.\n @param dispatch All the information required for the interpreter to load\n an expression, select an entrypoint and return the values expected by the\n caller. The interpreter MAY encode dispatches differently to\n `LibEncodedDispatch` but this WILL negatively impact compatibility for\n calling contracts that hardcode the encoding logic.\n @param context A 2-dimensional array of data that can be indexed into at\n runtime by the interpreter. The calling contract is responsible for\n ensuring the authenticity and completeness of context data. The\n interpreter MUST revert at runtime if an expression attempts to index\n into some context value that is not provided by the caller. This implies\n that context reads cannot be checked for out of bounds reads at deploy\n time, as the runtime context MAY be provided in a different shape to what\n the expression is expecting.\n Same as `eval` but allowing the caller to specify a namespace under which\n the state changes will be applied. The interpeter MUST ensure that keys\n will never collide across namespaces, even if, for example:\n - The calling contract is malicious and attempts to craft a collision\n with state changes from another contract\n - The expression is malicious and attempts to craft a collision with\n other expressions evaluated by the same calling contract\n A malicious entity MAY have access to significant offchain resources to\n attempt to precompute key collisions through brute force. The collision\n resistance of namespaces should be comparable or equivalent to the\n collision resistance of the hashing algorithms employed by the blockchain\n itself, such as the design of `mapping` in Solidity that hashes each\n nested key to produce a collision resistant compound key.\n @return stack The list of values produced by evaluating the expression.\n MUST NOT be longer than the maximum length specified by `dispatch`, if\n applicable.\n @return kvs A list of pairwise key/value items to be saved in the store." + }, + "functionSelector": "6715f825", + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "eval", + "nameLocation": "8867:4:57", + "parameters": { + "id": 48726, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 48715, + "mutability": "mutable", + "name": "store", + "nameLocation": "8901:5:57", + "nodeType": "VariableDeclaration", + "scope": 48734, + "src": "8881:25:57", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_contract$_IInterpreterStoreV1_$48685", + "typeString": "contract IInterpreterStoreV1" + }, + "typeName": { + "id": 48714, + "nodeType": "UserDefinedTypeName", + "pathNode": { + "id": 48713, + "name": "IInterpreterStoreV1", + "nameLocations": [ + "8881:19:57" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 48685, + "src": "8881:19:57" + }, + "referencedDeclaration": 48685, + "src": "8881:19:57", + "typeDescriptions": { + "typeIdentifier": "t_contract$_IInterpreterStoreV1_$48685", + "typeString": "contract IInterpreterStoreV1" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 48718, + "mutability": "mutable", + "name": "namespace", + "nameLocation": "8931:9:57", + "nodeType": "VariableDeclaration", + "scope": 48734, + "src": "8916:24:57", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_userDefinedValueType$_StateNamespace_$48694", + "typeString": "StateNamespace" + }, + "typeName": { + "id": 48717, + "nodeType": "UserDefinedTypeName", + "pathNode": { + "id": 48716, + "name": "StateNamespace", + "nameLocations": [ + "8916:14:57" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 48694, + "src": "8916:14:57" + }, + "referencedDeclaration": 48694, + "src": "8916:14:57", + "typeDescriptions": { + "typeIdentifier": "t_userDefinedValueType$_StateNamespace_$48694", + "typeString": "StateNamespace" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 48721, + "mutability": "mutable", + "name": "dispatch", + "nameLocation": "8966:8:57", + "nodeType": "VariableDeclaration", + "scope": 48734, + "src": "8950:24:57", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_userDefinedValueType$_EncodedDispatch_$48692", + "typeString": "EncodedDispatch" + }, + "typeName": { + "id": 48720, + "nodeType": "UserDefinedTypeName", + "pathNode": { + "id": 48719, + "name": "EncodedDispatch", + "nameLocations": [ + "8950:15:57" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 48692, + "src": "8950:15:57" + }, + "referencedDeclaration": 48692, + "src": "8950:15:57", + "typeDescriptions": { + "typeIdentifier": "t_userDefinedValueType$_EncodedDispatch_$48692", + "typeString": "EncodedDispatch" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 48725, + "mutability": "mutable", + "name": "context", + "nameLocation": "9005:7:57", + "nodeType": "VariableDeclaration", + "scope": 48734, + "src": "8984:28:57", + "stateVariable": false, + "storageLocation": "calldata", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_calldata_ptr_$dyn_calldata_ptr", + "typeString": "uint256[][]" + }, + "typeName": { + "baseType": { + "baseType": { + "id": 48722, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "8984:7:57", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 48723, + "nodeType": "ArrayTypeName", + "src": "8984:9:57", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr", + "typeString": "uint256[]" + } + }, + "id": 48724, + "nodeType": "ArrayTypeName", + "src": "8984:11:57", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_storage_$dyn_storage_ptr", + "typeString": "uint256[][]" + } + }, + "visibility": "internal" + } + ], + "src": "8871:147:57" + }, + "returnParameters": { + "id": 48733, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 48729, + "mutability": "mutable", + "name": "stack", + "nameLocation": "9059:5:57", + "nodeType": "VariableDeclaration", + "scope": 48734, + "src": "9042:22:57", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr", + "typeString": "uint256[]" + }, + "typeName": { + "baseType": { + "id": 48727, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "9042:7:57", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 48728, + "nodeType": "ArrayTypeName", + "src": "9042:9:57", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr", + "typeString": "uint256[]" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 48732, + "mutability": "mutable", + "name": "kvs", + "nameLocation": "9083:3:57", + "nodeType": "VariableDeclaration", + "scope": 48734, + "src": "9066:20:57", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr", + "typeString": "uint256[]" + }, + "typeName": { + "baseType": { + "id": 48730, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "9066:7:57", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 48731, + "nodeType": "ArrayTypeName", + "src": "9066:9:57", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr", + "typeString": "uint256[]" + } + }, + "visibility": "internal" + } + ], + "src": "9041:46:57" + }, + "scope": 48735, + "stateMutability": "view", + "virtual": false, + "visibility": "external" + } + ], + "abstract": false, + "baseContracts": [], + "canonicalName": "IInterpreterV1", + "contractDependencies": [], + "contractKind": "interface", + "documentation": { + "id": 48705, + "nodeType": "StructuredDocumentation", + "src": "1147:3203:57", + "text": "@title IInterpreterV1\n Interface into a standard interpreter that supports:\n - evaluating `view` logic deployed onchain by an `IExpressionDeployerV1`\n - receiving arbitrary `uint256[][]` supporting context to be made available\n to the evaluated logic\n - handling subsequent state changes in bulk in response to evaluated logic\n - namespacing state changes according to the caller's preferences to avoid\n unwanted key collisions\n - exposing its internal function pointers to support external precompilation\n of logic for more gas efficient runtime evaluation by the interpreter\n The interface is designed to be stable across many versions and\n implementations of an interpreter, balancing minimalism with features\n required for a general purpose onchain interpreted compute environment.\n The security model of an interpreter is that it MUST be resilient to\n malicious expressions even if they dispatch arbitrary internal function\n pointers during an eval. The interpreter MAY return garbage or exhibit\n undefined behaviour or error during an eval, _provided that no state changes\n are persisted_ e.g. in storage, such that only the caller that specifies the\n malicious expression can be negatively impacted by the result. In turn, the\n caller must guard itself against arbitrarily corrupt/malicious reverts and\n return values from any interpreter that it requests an expression from. And\n so on and so forth up to the externally owned account (EOA) who signs the\n transaction and agrees to a specific combination of contracts, expressions\n and interpreters, who can presumably make an informed decision about which\n ones to trust to get the job done.\n The state changes for an interpreter are expected to be produces by an `eval`\n and passed to the `IInterpreterStoreV1` returned by the eval, as-is by the\n caller, after the caller has had an opportunity to apply their own\n intermediate logic such as reentrancy defenses against malicious\n interpreters. The interpreter is free to structure the state changes however\n it wants but MUST guard against the calling contract corrupting the changes\n between `eval` and `set`. For example a store could sandbox storage writes\n per-caller so that a malicious caller can only damage their own state\n changes, while honest callers respect, benefit from and are protected by the\n interpreter store's state change handling.\n The two step eval-state model allows eval to be read-only which provides\n security guarantees for the caller such as no stateful reentrancy, either\n from the interpreter or some contract interface used by some word, while\n still allowing for storage writes. As the storage writes happen on the\n interpreter rather than the caller (c.f. delegate call) the caller DOES NOT\n need to trust the interpreter, which allows for permissionless selection of\n interpreters by end users. Delegate call always implies an admin key on the\n caller because the delegatee contract can write arbitrarily to the state of\n the delegator, which severely limits the generality of contract composition." + }, + "fullyImplemented": false, + "linearizedBaseContracts": [ + 48735 + ], + "name": "IInterpreterV1", + "nameLocation": "4360:14:57", + "scope": 48736, + "usedErrors": [] + } + ], + "license": "CAL" + }, + "id": 57 + } \ No newline at end of file diff --git a/cli/src/cli/abis/IParserV1.json b/cli/src/cli/abis/IParserV1.json new file mode 100644 index 000000000..99327966a --- /dev/null +++ b/cli/src/cli/abis/IParserV1.json @@ -0,0 +1,695 @@ +{ + "abi": [ + { + "inputs": [], + "name": "authoringMetaHash", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "parse", + "outputs": [ + { + "internalType": "bytes[]", + "name": "", + "type": "bytes[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "parseMeta", + "outputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "verifyAuthoringMeta", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "pure", + "type": "function" + } + ], + "bytecode": { + "object": "0x", + "sourceMap": "", + "linkReferences": {} + }, + "deployedBytecode": { + "object": "0x", + "sourceMap": "", + "linkReferences": {} + }, + "methodIdentifiers": { + "authoringMetaHash()": "b6c7175a", + "parse(bytes)": "fab4087a", + "parseMeta()": "ffc25704", + "verifyAuthoringMeta(bytes)": "9f8526da" + }, + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"authoringMetaHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"parse\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"\",\"type\":\"bytes[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"parseMeta\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"verifyAuthoringMeta\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"verifyAuthoringMeta(bytes)\":{\"params\":{\"data\":\"The authoring meta.\"},\"returns\":{\"_0\":\"True if the authoring meta is valid, false otherwise.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"authoringMetaHash()\":{\"notice\":\"Returns the bytes of the authoring meta hash. Authoring meta is the data used by the authoring tool to give authors a better experience when writing Rainlang strings. The authoring meta is also used to generate the parse meta. As the authoring meta can be quite large, including potentially hundreds of long string descriptions of individual words, only the hash is required to be reported by the parser. This hash MUST NOT be modified after deployment. There MUST be a one-to-one mapping between authoring meta and parse meta that can be verified externally in a deterministic way.\"},\"parse(bytes)\":{\"notice\":\"Parses a Rainlang string into an evaluable expression. MUST be deterministic and MUST NOT have side effects. The only inputs are the Rainlang string and the parse meta. MAY revert if the Rainlang string is invalid. This function takes `bytes` instead of `string` to allow for definitions of \\\"string\\\" other than UTF-8.\"},\"parseMeta()\":{\"notice\":\"Returns the bytes of the parse meta. Parse meta is the data used by the parser to convert a Rainlang string into an evaluable expression. These bytes MUST NOT be modified after deployment. The function is marked `external` so that it can be externally verified against the authoring meta, but is likely to be `public` in practice so that it can also be used internally by `parse`.\"},\"verifyAuthoringMeta(bytes)\":{\"notice\":\"Verifies that the authoring meta is valid. MUST be deterministic and MUST NOT have side effects. The only input is the authoring meta. The authoring meta MUST match the authoring meta hash returned by `authoringMetaHash` and MUST determine the parse meta returned by `parseMeta`.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/interface/unstable/IParserV1.sol\":\"IParserV1\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"appendCBOR\":false,\"bytecodeHash\":\"none\"},\"optimizer\":{\"enabled\":true,\"runs\":1000000},\"remappings\":[\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":rain.chainlink/=lib/rain.chainlink/src/\",\":rain.datacontract/=lib/rain.datacontract/src/\",\":rain.erc1820/=lib/rain.erc1820/src/\",\":rain.lib.hash/=lib/rain.lib.memkv/lib/rain.lib.hash/src/\",\":rain.lib.memkv/=lib/rain.lib.memkv/src/\",\":rain.lib.typecast/=lib/rain.lib.typecast/src/\",\":rain.math.fixedpoint/=lib/rain.chainlink/lib/rain.math.fixedpoint/src/\",\":rain.math.saturating/=lib/rain.chainlink/lib/rain.math.fixedpoint/lib/rain.math.saturating/src/\",\":rain.metadata/=lib/rain.metadata/src/\",\":rain.solmem/=lib/rain.solmem/src/\"]},\"sources\":{\"src/interface/IInterpreterStoreV1.sol\":{\"keccak256\":\"0xbd9baa8cd30406576f876a76f1c08396561ba93131741af338f63e2414e20619\",\"license\":\"CAL\",\"urls\":[\"bzz-raw://30bb6f09d8b8f27f77e6c44591c4f2070286a91dad202043cf2351ae802e3df5\",\"dweb:/ipfs/QmRz5pfzf5w84iNmKaYYbqP8oQywzc5xbd3xzKmxgFyf9y\"]},\"src/interface/IInterpreterV1.sol\":{\"keccak256\":\"0xebde08ca2e1c25fc733e0bb8867598715f8ba79772f86db1c8960ad7d68a5293\",\"license\":\"CAL\",\"urls\":[\"bzz-raw://b93fb28a09aeea4afe7f0d4afc67354c0fa538e5a9b274b0c5f10ed1dd6b6b00\",\"dweb:/ipfs/QmatNhoHRSJ1ZvoCNo61YMt9jb1vvEkWy3mkcoPkB4FFA9\"]},\"src/interface/unstable/IParserV1.sol\":{\"keccak256\":\"0x8a1b62fa8a2ca4331549786a9353a4d3e0e7af5442a45b9310a9b28e7b9957fc\",\"license\":\"CAL\",\"urls\":[\"bzz-raw://2265b4e69888061e79de114f3bfbbc4838ddd41c4d7d1d7918d936afd072c962\",\"dweb:/ipfs/Qmcwejo4UJ8rUqWwt2gmFbeSnZfzQrYLUrbY74Suy1pz3c\"]}},\"version\":1}", + "metadata": { + "compiler": { + "version": "0.8.19+commit.7dd6d404" + }, + "language": "Solidity", + "output": { + "abi": [ + { + "inputs": [], + "stateMutability": "pure", + "type": "function", + "name": "authoringMetaHash", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ] + }, + { + "inputs": [ + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "stateMutability": "pure", + "type": "function", + "name": "parse", + "outputs": [ + { + "internalType": "bytes[]", + "name": "", + "type": "bytes[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + } + ] + }, + { + "inputs": [], + "stateMutability": "pure", + "type": "function", + "name": "parseMeta", + "outputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ] + }, + { + "inputs": [ + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "stateMutability": "pure", + "type": "function", + "name": "verifyAuthoringMeta", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ] + } + ], + "devdoc": { + "kind": "dev", + "methods": { + "verifyAuthoringMeta(bytes)": { + "params": { + "data": "The authoring meta." + }, + "returns": { + "_0": "True if the authoring meta is valid, false otherwise." + } + } + }, + "version": 1 + }, + "userdoc": { + "kind": "user", + "methods": { + "authoringMetaHash()": { + "notice": "Returns the bytes of the authoring meta hash. Authoring meta is the data used by the authoring tool to give authors a better experience when writing Rainlang strings. The authoring meta is also used to generate the parse meta. As the authoring meta can be quite large, including potentially hundreds of long string descriptions of individual words, only the hash is required to be reported by the parser. This hash MUST NOT be modified after deployment. There MUST be a one-to-one mapping between authoring meta and parse meta that can be verified externally in a deterministic way." + }, + "parse(bytes)": { + "notice": "Parses a Rainlang string into an evaluable expression. MUST be deterministic and MUST NOT have side effects. The only inputs are the Rainlang string and the parse meta. MAY revert if the Rainlang string is invalid. This function takes `bytes` instead of `string` to allow for definitions of \"string\" other than UTF-8." + }, + "parseMeta()": { + "notice": "Returns the bytes of the parse meta. Parse meta is the data used by the parser to convert a Rainlang string into an evaluable expression. These bytes MUST NOT be modified after deployment. The function is marked `external` so that it can be externally verified against the authoring meta, but is likely to be `public` in practice so that it can also be used internally by `parse`." + }, + "verifyAuthoringMeta(bytes)": { + "notice": "Verifies that the authoring meta is valid. MUST be deterministic and MUST NOT have side effects. The only input is the authoring meta. The authoring meta MUST match the authoring meta hash returned by `authoringMetaHash` and MUST determine the parse meta returned by `parseMeta`." + } + }, + "version": 1 + } + }, + "settings": { + "remappings": [ + ":ds-test/=lib/forge-std/lib/ds-test/src/", + ":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", + ":forge-std/=lib/forge-std/src/", + ":openzeppelin-contracts/=lib/openzeppelin-contracts/", + ":openzeppelin/=lib/openzeppelin-contracts/contracts/", + ":rain.chainlink/=lib/rain.chainlink/src/", + ":rain.datacontract/=lib/rain.datacontract/src/", + ":rain.erc1820/=lib/rain.erc1820/src/", + ":rain.lib.hash/=lib/rain.lib.memkv/lib/rain.lib.hash/src/", + ":rain.lib.memkv/=lib/rain.lib.memkv/src/", + ":rain.lib.typecast/=lib/rain.lib.typecast/src/", + ":rain.math.fixedpoint/=lib/rain.chainlink/lib/rain.math.fixedpoint/src/", + ":rain.math.saturating/=lib/rain.chainlink/lib/rain.math.fixedpoint/lib/rain.math.saturating/src/", + ":rain.metadata/=lib/rain.metadata/src/", + ":rain.solmem/=lib/rain.solmem/src/" + ], + "optimizer": { + "enabled": true, + "runs": 1000000 + }, + "metadata": { + "bytecodeHash": "none", + "appendCBOR": false + }, + "compilationTarget": { + "src/interface/unstable/IParserV1.sol": "IParserV1" + }, + "libraries": {} + }, + "sources": { + "src/interface/IInterpreterStoreV1.sol": { + "keccak256": "0xbd9baa8cd30406576f876a76f1c08396561ba93131741af338f63e2414e20619", + "urls": [ + "bzz-raw://30bb6f09d8b8f27f77e6c44591c4f2070286a91dad202043cf2351ae802e3df5", + "dweb:/ipfs/QmRz5pfzf5w84iNmKaYYbqP8oQywzc5xbd3xzKmxgFyf9y" + ], + "license": "CAL" + }, + "src/interface/IInterpreterV1.sol": { + "keccak256": "0xebde08ca2e1c25fc733e0bb8867598715f8ba79772f86db1c8960ad7d68a5293", + "urls": [ + "bzz-raw://b93fb28a09aeea4afe7f0d4afc67354c0fa538e5a9b274b0c5f10ed1dd6b6b00", + "dweb:/ipfs/QmatNhoHRSJ1ZvoCNo61YMt9jb1vvEkWy3mkcoPkB4FFA9" + ], + "license": "CAL" + }, + "src/interface/unstable/IParserV1.sol": { + "keccak256": "0x8a1b62fa8a2ca4331549786a9353a4d3e0e7af5442a45b9310a9b28e7b9957fc", + "urls": [ + "bzz-raw://2265b4e69888061e79de114f3bfbbc4838ddd41c4d7d1d7918d936afd072c962", + "dweb:/ipfs/Qmcwejo4UJ8rUqWwt2gmFbeSnZfzQrYLUrbY74Suy1pz3c" + ], + "license": "CAL" + } + }, + "version": 1 + }, + "ast": { + "absolutePath": "src/interface/unstable/IParserV1.sol", + "id": 48871, + "exportedSymbols": { + "DEFAULT_STATE_NAMESPACE": [ + 48704 + ], + "EncodedDispatch": [ + 48692 + ], + "FullyQualifiedNamespace": [ + 48653 + ], + "IInterpreterStoreV1": [ + 48685 + ], + "IInterpreterV1": [ + 48735 + ], + "IParserV1": [ + 48870 + ], + "NO_STORE": [ + 48662 + ], + "Operand": [ + 48696 + ], + "SourceIndex": [ + 48690 + ], + "StateNamespace": [ + 48694 + ] + }, + "nodeType": "SourceUnit", + "src": "32:2265:61", + "nodes": [ + { + "id": 48836, + "nodeType": "PragmaDirective", + "src": "32:24:61", + "nodes": [], + "literals": [ + "solidity", + "^", + "0.8", + ".18" + ] + }, + { + "id": 48837, + "nodeType": "ImportDirective", + "src": "58:31:61", + "nodes": [], + "absolutePath": "src/interface/IInterpreterV1.sol", + "file": "../IInterpreterV1.sol", + "nameLocation": "-1:-1:-1", + "scope": 48871, + "sourceUnit": 48736, + "symbolAliases": [], + "unitAlias": "" + }, + { + "id": 48870, + "nodeType": "ContractDefinition", + "src": "91:2205:61", + "nodes": [ + { + "id": 48843, + "nodeType": "FunctionDefinition", + "src": "772:61:61", + "nodes": [], + "documentation": { + "id": 48838, + "nodeType": "StructuredDocumentation", + "src": "117:650:61", + "text": "Returns the bytes of the authoring meta hash. Authoring meta is the data\n used by the authoring tool to give authors a better experience when\n writing Rainlang strings. The authoring meta is also used to generate the\n parse meta. As the authoring meta can be quite large, including\n potentially hundreds of long string descriptions of individual words,\n only the hash is required to be reported by the parser. This hash MUST\n NOT be modified after deployment. There MUST be a one-to-one mapping\n between authoring meta and parse meta that can be verified externally in\n a deterministic way." + }, + "functionSelector": "b6c7175a", + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "authoringMetaHash", + "nameLocation": "781:17:61", + "parameters": { + "id": 48839, + "nodeType": "ParameterList", + "parameters": [], + "src": "798:2:61" + }, + "returnParameters": { + "id": 48842, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 48841, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 48843, + "src": "824:7:61", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_bytes32", + "typeString": "bytes32" + }, + "typeName": { + "id": 48840, + "name": "bytes32", + "nodeType": "ElementaryTypeName", + "src": "824:7:61", + "typeDescriptions": { + "typeIdentifier": "t_bytes32", + "typeString": "bytes32" + } + }, + "visibility": "internal" + } + ], + "src": "823:9:61" + }, + "scope": 48870, + "stateMutability": "pure", + "virtual": false, + "visibility": "external" + }, + { + "id": 48851, + "nodeType": "FunctionDefinition", + "src": "1269:77:61", + "nodes": [], + "documentation": { + "id": 48844, + "nodeType": "StructuredDocumentation", + "src": "839:425:61", + "text": "Verifies that the authoring meta is valid. MUST be deterministic and\n MUST NOT have side effects. The only input is the authoring meta.\n The authoring meta MUST match the authoring meta hash returned by\n `authoringMetaHash` and MUST determine the parse meta returned by\n `parseMeta`.\n @param data The authoring meta.\n @return True if the authoring meta is valid, false otherwise." + }, + "functionSelector": "9f8526da", + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "verifyAuthoringMeta", + "nameLocation": "1278:19:61", + "parameters": { + "id": 48847, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 48846, + "mutability": "mutable", + "name": "data", + "nameLocation": "1311:4:61", + "nodeType": "VariableDeclaration", + "scope": 48851, + "src": "1298:17:61", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_bytes_memory_ptr", + "typeString": "bytes" + }, + "typeName": { + "id": 48845, + "name": "bytes", + "nodeType": "ElementaryTypeName", + "src": "1298:5:61", + "typeDescriptions": { + "typeIdentifier": "t_bytes_storage_ptr", + "typeString": "bytes" + } + }, + "visibility": "internal" + } + ], + "src": "1297:19:61" + }, + "returnParameters": { + "id": 48850, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 48849, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 48851, + "src": "1340:4:61", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "typeName": { + "id": 48848, + "name": "bool", + "nodeType": "ElementaryTypeName", + "src": "1340:4:61", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "visibility": "internal" + } + ], + "src": "1339:6:61" + }, + "scope": 48870, + "stateMutability": "pure", + "virtual": false, + "visibility": "external" + }, + { + "id": 48857, + "nodeType": "FunctionDefinition", + "src": "1781:58:61", + "nodes": [], + "documentation": { + "id": 48852, + "nodeType": "StructuredDocumentation", + "src": "1352:424:61", + "text": "Returns the bytes of the parse meta. Parse meta is the data used by the\n parser to convert a Rainlang string into an evaluable expression.\n These bytes MUST NOT be modified after deployment. The function is\n marked `external` so that it can be externally verified against the\n authoring meta, but is likely to be `public` in practice so that it can\n also be used internally by `parse`." + }, + "functionSelector": "ffc25704", + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "parseMeta", + "nameLocation": "1790:9:61", + "parameters": { + "id": 48853, + "nodeType": "ParameterList", + "parameters": [], + "src": "1799:2:61" + }, + "returnParameters": { + "id": 48856, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 48855, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 48857, + "src": "1825:12:61", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_bytes_memory_ptr", + "typeString": "bytes" + }, + "typeName": { + "id": 48854, + "name": "bytes", + "nodeType": "ElementaryTypeName", + "src": "1825:5:61", + "typeDescriptions": { + "typeIdentifier": "t_bytes_storage_ptr", + "typeString": "bytes" + } + }, + "visibility": "internal" + } + ], + "src": "1824:14:61" + }, + "scope": 48870, + "stateMutability": "pure", + "virtual": false, + "visibility": "external" + }, + { + "id": 48869, + "nodeType": "FunctionDefinition", + "src": "2203:91:61", + "nodes": [], + "documentation": { + "id": 48858, + "nodeType": "StructuredDocumentation", + "src": "1845:353:61", + "text": "Parses a Rainlang string into an evaluable expression. MUST be\n deterministic and MUST NOT have side effects. The only inputs are the\n Rainlang string and the parse meta. MAY revert if the Rainlang string\n is invalid. This function takes `bytes` instead of `string` to allow\n for definitions of \"string\" other than UTF-8." + }, + "functionSelector": "fab4087a", + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "parse", + "nameLocation": "2212:5:61", + "parameters": { + "id": 48861, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 48860, + "mutability": "mutable", + "name": "data", + "nameLocation": "2231:4:61", + "nodeType": "VariableDeclaration", + "scope": 48869, + "src": "2218:17:61", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_bytes_memory_ptr", + "typeString": "bytes" + }, + "typeName": { + "id": 48859, + "name": "bytes", + "nodeType": "ElementaryTypeName", + "src": "2218:5:61", + "typeDescriptions": { + "typeIdentifier": "t_bytes_storage_ptr", + "typeString": "bytes" + } + }, + "visibility": "internal" + } + ], + "src": "2217:19:61" + }, + "returnParameters": { + "id": 48868, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 48864, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 48869, + "src": "2260:14:61", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr", + "typeString": "bytes[]" + }, + "typeName": { + "baseType": { + "id": 48862, + "name": "bytes", + "nodeType": "ElementaryTypeName", + "src": "2260:5:61", + "typeDescriptions": { + "typeIdentifier": "t_bytes_storage_ptr", + "typeString": "bytes" + } + }, + "id": 48863, + "nodeType": "ArrayTypeName", + "src": "2260:7:61", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr", + "typeString": "bytes[]" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 48867, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 48869, + "src": "2276:16:61", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr", + "typeString": "uint256[]" + }, + "typeName": { + "baseType": { + "id": 48865, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "2276:7:61", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 48866, + "nodeType": "ArrayTypeName", + "src": "2276:9:61", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr", + "typeString": "uint256[]" + } + }, + "visibility": "internal" + } + ], + "src": "2259:34:61" + }, + "scope": 48870, + "stateMutability": "pure", + "virtual": false, + "visibility": "external" + } + ], + "abstract": false, + "baseContracts": [], + "canonicalName": "IParserV1", + "contractDependencies": [], + "contractKind": "interface", + "fullyImplemented": false, + "linearizedBaseContracts": [ + 48870 + ], + "name": "IParserV1", + "nameLocation": "101:9:61", + "scope": 48871, + "usedErrors": [] + } + ], + "license": "CAL" + }, + "id": 61 + } \ No newline at end of file diff --git a/cli/src/cli/addorder/mod.rs b/cli/src/cli/addorder/mod.rs new file mode 100644 index 000000000..bf99726a6 --- /dev/null +++ b/cli/src/cli/addorder/mod.rs @@ -0,0 +1,192 @@ + +use std::str::FromStr; +use std::{convert::TryFrom, sync::Arc}; +use clap::Parser; +use ethers::prelude::k256::elliptic_curve::bigint::modular::constant_mod::ResidueParams; +use ethers::types::Address; +use ethers::utils::{parse_units, Units}; +use ethers::{providers::{Provider, Middleware, Http}, types::{H160, H256, U256,Bytes}} ; +use ethers::{signers::LocalWallet, types::{Eip1559TransactionRequest, U64}, prelude::SignerMiddleware}; +use anyhow::{Result, anyhow}; +use ethers::core::abi::Abi ; +use ethers::contract::Contract; +use ethers::contract::abigen ; +use ethers::contract::Abigen ; +use spinners::{Spinner, Spinners}; +use super::registry::RainNetworkOptions; + +#[derive(Parser,Debug,Clone)] +pub struct AddOrder{ + + /// network to deposit + #[arg(short, long)] + pub network: RainNetworkOptions, + + /// address of the orderbook + #[arg(long)] + orderbook : String, + + /// address of the token to deposit + #[arg(short='p', long)] + parser_address : String, + + /// token list to be included in order + #[arg(short,long,num_args = 1.. )] + tokens : Vec, + + /// token list to be included in order + #[arg(short,long,num_args = 1..)] + decimals : Vec, + + /// address of the token to deposit + #[arg(short, long)] + order_string : String, + + /// address of the token to deposit + #[arg(short='m', long)] + order_meta : String, + + /// private key (unprefixed) provided when deploy is set to true + #[arg(short ='k' , long = "priavte-key" )] + pub private_key: String, + + /// mumbai rpc url, default read from env varibales + #[arg(long,env)] + pub mumbai_rpc_url: Option , + + /// polygon rpc url, default read from env varibales + #[arg(long,env)] + pub polygon_rpc_url: Option , + + /// ethereum rpc url, default read from env varibales + #[arg(long,env)] + pub ethereum_rpc_url: Option , + + /// fuji rpc url, default read from env varibales + #[arg(long,env)] + pub fuji_rpc_url: Option , + +} + +impl AddOrder{ + pub fn get_network_rpc(&self) -> anyhow::Result{ + let rpc_url = match self.network.clone() { + RainNetworkOptions::Ethereum => { + if self.ethereum_rpc_url.is_none(){ + return Err(anyhow!("\n ❌Please provide --ethereum-rpc-url argument.")) ; + } + self.ethereum_rpc_url.clone().unwrap() + } , + RainNetworkOptions::Polygon => { + if self.polygon_rpc_url.is_none(){ + return Err(anyhow!("\n ❌Please provide --polygon-rpc-url argument.")) ; + } + self.polygon_rpc_url.clone().unwrap() + }, + RainNetworkOptions::Mumbai => { + if self.mumbai_rpc_url.is_none(){ + return Err(anyhow!("\n ❌Please provide --mumbai-rpc-url argument.")) ; + } + self.mumbai_rpc_url.clone().unwrap() + }, + RainNetworkOptions::Fuji => { + if self.fuji_rpc_url.is_none(){ + return Err(anyhow!("\n ❌Please provide --fuji-rpc-url argument.")) ; + } + self.fuji_rpc_url.clone().unwrap() + } + } ; + Ok(rpc_url) + } +} + +pub async fn add_order(add_order : AddOrder) -> anyhow::Result<()> { + + let wallet: LocalWallet = add_order.private_key.parse().unwrap() ; + + let rpc_url = add_order.get_network_rpc().unwrap() ; + let provider = Provider::::try_from(rpc_url) + .expect("\n❌Could not instantiate HTTP Provider"); + + let client = SignerMiddleware::new_with_provider_chain(provider, wallet).await?; + + abigen!(IParserV1, "src/cli/abis/IParserV1.json"); + + abigen!(IOrderBookV2, "src/cli/abis/IOrderBookV2.json"); + + let parser_address = H160::from_str(&String::from(add_order.parser_address)).unwrap(); + let orderbook_address = H160::from_str(&String::from(add_order.orderbook)).unwrap(); ; + + + let orderbook = IOrderBookV2::new(orderbook_address, Arc::new(client.clone())); + + let parser_contract = IParserV1::new(parser_address.clone(),Arc::new(client.clone())) ; + + let (sources,constants) = parser_contract.parse( + Bytes::from( + add_order.order_string.as_bytes().to_vec() + ) + ).call().await.unwrap() ; + + let tokens = add_order.tokens ; + let decimals = add_order.decimals ; + + let vault_id = U256::from(H160::random().as_bytes()) ; + let mut decimals = decimals.iter() ; + + let io_arr: Vec<_> = tokens.iter().map(|x| { + Io { + token : H160::from_str(x).unwrap() , + decimals : *decimals.next().unwrap(), + vault_id : vault_id.clone() + + } + }).collect() ; + + let eval_config = EvaluableConfig { + deployer : parser_address, + sources : sources , + constants : constants + } ; + + let rain_magic_number = String::from("ff0a89c674ee7874") ; + + let meta_string = hex::decode( + format!("{}{}", + rain_magic_number, + hex::encode(add_order.order_meta) + ) + ).unwrap(); + + let meta_bytes = Bytes::from(meta_string) ; + + let order_config = OrderConfig { + valid_inputs : io_arr.clone() , + valid_outputs : io_arr.clone(), + evaluable_config : eval_config , + meta : meta_bytes + } ; + + let mut sp = Spinner::new( + Spinners::from_str("Dots9").unwrap(), + "Adding order...".into(), + ); + + let order_tx = orderbook.add_order(order_config) ; + + let order_pending_tx = order_tx.send().await?; + + let order_receipt = order_pending_tx.confirmations(3).await?.unwrap(); + + let order_msg = format!( + "{}{}{}" , + String::from("\nOrder added !!\n#################################\n✅ Hash : "), + format!("0x{}",hex::encode(order_receipt.transaction_hash.as_bytes().to_vec())), + String::from("\n-----------------------------------\n") + ) ; + sp.stop_with_message(order_msg.into()); + + + Ok(()) + +} diff --git a/cli/src/cli/deposit/mod.rs b/cli/src/cli/deposit/mod.rs index 4528faf8f..74507285e 100644 --- a/cli/src/cli/deposit/mod.rs +++ b/cli/src/cli/deposit/mod.rs @@ -11,8 +11,8 @@ use ethers::core::abi::Abi ; use ethers::contract::Contract; use ethers::contract::abigen ; use ethers::contract::Abigen ; -use spinners::{Spinner, Spinners}; - +use spinners::{Spinner, Spinners}; +use ethers_signers::{Ledger, HDPath}; use super::registry::RainNetworkOptions; @@ -29,11 +29,11 @@ pub struct Deposit{ orderbook : String, /// address of the token to deposit - #[arg(short='t', long)] + #[arg(short='t', long, num_args = 1..)] token_address : String, /// decimals coressponding to the token - #[arg(short='d', long)] + #[arg(short='d', long, num_args = 1..)] token_decimals : u32, /// amount to deposit. @@ -44,10 +44,6 @@ pub struct Deposit{ #[arg(short, long)] vault_id : Option , - /// private key (unprefixed) provided when deploy is set to true - #[arg(short ='k' , long = "priavte-key" )] - pub private_key: String, - /// mumbai rpc url, default read from env varibales #[arg(long,env)] pub mumbai_rpc_url: Option , @@ -140,16 +136,16 @@ pub async fn deposit(deposit : Deposit) -> anyhow::Result<()> { } } ; - let rpc_url = deposit.get_network_rpc().unwrap() ; - - let wallet: LocalWallet = deposit.private_key.parse().unwrap() ; - + let rpc_url = deposit.get_network_rpc().unwrap() ; let provider = Provider::::try_from(rpc_url) - .expect("\n❌Could not instantiate HTTP Provider"); + .expect("\n❌Could not instantiate HTTP Provider"); + + let chain_id = provider.get_chainid().await.unwrap().as_u64() ; + let wallet= Ledger::new(HDPath::LedgerLive(0), chain_id).await?; - let client = SignerMiddleware::new_with_provider_chain(provider, wallet).await?; - let signer_address = client.address() ; + // let client = SignerMiddleware::new(provider, wallet); + let signer_address = wallet.get_address().await.unwrap() ; abigen!(IOrderBookV2, "src/cli/abis/IOrderBookV2.json"); @@ -167,8 +163,8 @@ pub async fn deposit(deposit : Deposit) -> anyhow::Result<()> { ]"#, ); - let token_contract = IERC20::new(token_address,Arc::new(client.clone())) ; - let token_balance: U256 = token_contract.balance_of(signer_address.clone()).call().await.unwrap() ; + let token_contract = IERC20::new(token_address,Arc::new(provider.clone())) ; + let token_balance: U256 = token_contract.balance_of(signer_address).call().await.unwrap() ; if token_balance.gt(&token_amount.clone()) { let approve_tx = token_contract.approve(orderbook_address.clone(), token_amount.clone()) ; @@ -192,7 +188,7 @@ pub async fn deposit(deposit : Deposit) -> anyhow::Result<()> { return Err(anyhow!("\n ❌Insufficent balance for deposit.\nCurrent Balance : {}.",token_balance)) ; } - let orderbook = IOrderBookV2::new(orderbook_address, Arc::new(client)); + let orderbook = IOrderBookV2::new(orderbook_address, Arc::new(SignerMiddleware::new(provider, wallet))); let deposit_config = DepositConfig{ token : token_address , diff --git a/cli/src/cli/mod.rs b/cli/src/cli/mod.rs index 45d7b5487..fb27308ed 100644 --- a/cli/src/cli/mod.rs +++ b/cli/src/cli/mod.rs @@ -7,6 +7,7 @@ mod order; pub mod registry; pub mod deposit; pub mod withdraw; +pub mod addorder; #[derive(Parser)] #[command(author, version, about, long_about = None)] @@ -20,7 +21,8 @@ pub enum Orderbook { #[command(subcommand)] Order(Order), Deposit(deposit::Deposit), - Withdraw(withdraw::Withdraw) + Withdraw(withdraw::Withdraw), + AddOrder(addorder::AddOrder) } pub async fn dispatch(orderbook: Orderbook) -> Result<()> { @@ -31,11 +33,15 @@ pub async fn dispatch(orderbook: Orderbook) -> Result<()> { } }, Orderbook::Deposit(deposit) => { - let _ =deposit::deposit(deposit).await ; + let _ = deposit::deposit(deposit).await ; Ok(()) }, Orderbook::Withdraw(withdraw) => { - let _ =withdraw::withdraw(withdraw).await; + let _ = withdraw::withdraw(withdraw).await; + Ok(()) + }, + Orderbook::AddOrder(order) => { + let _ = addorder::add_order(order).await; Ok(()) } } diff --git a/cli/src/subgraph/orders/mod.rs b/cli/src/subgraph/orders/mod.rs index 3b6ba8bf1..042d3f133 100644 --- a/cli/src/subgraph/orders/mod.rs +++ b/cli/src/subgraph/orders/mod.rs @@ -7,7 +7,7 @@ use serde_bytes::ByteBuf as Bytes; use once_cell::sync::Lazy; static BASE_URL: Lazy = - Lazy::new(|| Url::parse("https://api.thegraph.com/subgraphs/name/siddharth2207/rainorderbook").unwrap()); + Lazy::new(|| Url::parse("https://api.thegraph.com/subgraphs/name/siddharth2207/nhstestbot").unwrap()); #[derive(GraphQLQuery)] #[graphql( diff --git a/cli/src/subgraph/orders/orders.graphql b/cli/src/subgraph/orders/orders.graphql index 3bfb50597..a1f366d7d 100644 --- a/cli/src/subgraph/orders/orders.graphql +++ b/cli/src/subgraph/orders/orders.graphql @@ -4,18 +4,14 @@ query OrdersQuery { ) { id handleIO - orderJSONString owner { id } - orderActive expression interpreter interpreterStore - transaction { - id - } - validInputs { + validInputs(orderBy: index, orderDirection: asc) { + index token { id symbol @@ -28,7 +24,8 @@ query OrdersQuery { id } } - validOutputs { + validOutputs(orderBy: index, orderDirection: asc) { + index token { id symbol diff --git a/cli/src/subgraph/orders/orders.schema.json b/cli/src/subgraph/orders/orders.schema.json index 69f325f2c..4a4b82ab8 100644 --- a/cli/src/subgraph/orders/orders.schema.json +++ b/cli/src/subgraph/orders/orders.schema.json @@ -130,7 +130,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } } @@ -163,7 +163,7 @@ "name": "orderBy", "type": { "kind": "ENUM", - "name": "Order_orderBy", + "name": "Event_orderBy", "ofType": null } }, @@ -183,25 +183,29 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "Order_filter", + "name": "Event_filter", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "Events emitted by this account", "isDeprecated": false, - "name": "orders", + "name": "events", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Order", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Event", + "ofType": null + } } } } @@ -234,7 +238,7 @@ "name": "orderBy", "type": { "kind": "ENUM", - "name": "VaultWithdraw_orderBy", + "name": "Expression_orderBy", "ofType": null } }, @@ -254,15 +258,15 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "VaultWithdraw_filter", + "name": "Expression_filter", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "Expressions deployed by this account", "isDeprecated": false, - "name": "withdraws", + "name": "expressions", "type": { "kind": "LIST", "name": null, @@ -271,69 +275,88 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "VaultWithdraw", + "name": "Expression", "ofType": null } } } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Account", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "VaultDeposit_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "VaultDeposit_filter", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "deposits", + "name": "id_not", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id_gt", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id_lt", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id_gte", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id_lte", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id_in", "type": { "kind": "LIST", "name": null, @@ -341,70 +364,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "VaultDeposit", + "kind": "SCALAR", + "name": "ID", "ofType": null } } } }, { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "OrderClear_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrderClear_filter", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "ordersCleared", + "name": "id_not_in", "type": { "kind": "LIST", "name": null, @@ -412,84 +382,280 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "OrderClear", + "kind": "SCALAR", + "name": "ID", "ofType": null } } } }, { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Bounty_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Bounty_filter", - "ofType": null - } - } - ], + "defaultValue": null, + "description": null, + "name": "events_", + "type": { + "kind": "INPUT_OBJECT", + "name": "Event_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "expressions_", + "type": { + "kind": "INPUT_OBJECT", + "name": "Expression_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Filter for the block changed event.", + "name": "_change_block", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Account_filter", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Account_filter", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "Account_filter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "events" + }, + { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "bounties", + "name": "expressions" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "Account_orderBy", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "BigDecimal", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "BigInt", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "number_gte", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Bounty", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "hash", + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_gte", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "Block_height", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Boolean", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Bytes", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "Address of this contract", + "isDeprecated": false, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null } } }, + { + "args": [], + "deprecationReason": null, + "description": "Bytecode hash of this contract", + "isDeprecated": false, + "name": "bytecodeHash", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "deployTransaction", + "type": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "The deployer used when added/deployed the contract", + "isDeprecated": false, + "name": "initialDeployer", + "type": { + "kind": "OBJECT", + "name": "ExpressionDeployer", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "The meta emmited", + "isDeprecated": false, + "name": "meta", + "type": { + "kind": "OBJECT", + "name": "RainMetaV1", + "ofType": null + } + }, { "args": [ { @@ -518,7 +684,7 @@ "name": "orderBy", "type": { "kind": "ENUM", - "name": "TakeOrderEntity_orderBy", + "name": "Expression_orderBy", "ofType": null } }, @@ -538,15 +704,15 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "TakeOrderEntity_filter", + "name": "Expression_filter", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "Expressions deployed via this contract.", "isDeprecated": false, - "name": "takeOrderEntities", + "name": "expressions", "type": { "kind": "LIST", "name": null, @@ -555,230 +721,41 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "TakeOrderEntity", + "name": "Expression", "ofType": null } } } }, { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Vault_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Vault_filter", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaults", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vault", - "ofType": null - } - } - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "TokenVault_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "tokenVaults", + "name": "contractMeta", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenVault", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Bytes", + "ofType": null } }, { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Event_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Event_filter", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "events", + "name": "contractMetaHash", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Event", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Bytes", + "ofType": null } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "Account", + "name": "Contract", "possibleTypes": null }, { @@ -792,7 +769,7 @@ "name": "id", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } }, @@ -802,7 +779,7 @@ "name": "id_not", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } }, @@ -812,7 +789,7 @@ "name": "id_gt", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } }, @@ -822,7 +799,7 @@ "name": "id_lt", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } }, @@ -832,7 +809,7 @@ "name": "id_gte", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } }, @@ -842,7 +819,7 @@ "name": "id_lte", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } }, @@ -858,7 +835,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } } @@ -876,7 +853,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } } @@ -885,648 +862,449 @@ { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "bytecodeHash", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "bytecodeHash_not", "type": { "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orders_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Order_filter", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "withdraws_", + "name": "bytecodeHash_gt", "type": { - "kind": "INPUT_OBJECT", - "name": "VaultWithdraw_filter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "deposits_", + "name": "bytecodeHash_lt", "type": { - "kind": "INPUT_OBJECT", - "name": "VaultDeposit_filter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "ordersCleared_", + "name": "bytecodeHash_gte", "type": { - "kind": "INPUT_OBJECT", - "name": "OrderClear_filter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bounties_", + "name": "bytecodeHash_lte", "type": { - "kind": "INPUT_OBJECT", - "name": "Bounty_filter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "takeOrderEntities_", + "name": "bytecodeHash_in", "type": { - "kind": "INPUT_OBJECT", - "name": "TakeOrderEntity_filter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "vaults_", + "name": "bytecodeHash_not_in", "type": { - "kind": "INPUT_OBJECT", - "name": "Vault_filter", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, { "defaultValue": null, "description": null, - "name": "tokenVaults_", + "name": "bytecodeHash_contains", "type": { - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "events_", + "name": "bytecodeHash_contains_nocase", "type": { - "kind": "INPUT_OBJECT", - "name": "Event_filter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", + "description": null, + "name": "bytecodeHash_not_contains", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "and", + "name": "bytecodeHash_not_contains_nocase", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "or", + "name": "bytecodeHash_starts_with", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "orders" + "name": "bytecodeHash_starts_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "withdraws" + "name": "bytecodeHash_not_starts_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "deposits" + "name": "bytecodeHash_not_starts_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "ordersCleared" + "name": "bytecodeHash_ends_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bounties" + "name": "bytecodeHash_ends_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "takeOrderEntities" + "name": "bytecodeHash_not_ends_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "vaults" + "name": "bytecodeHash_not_ends_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "tokenVaults" + "name": "deployTransaction", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "events" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "Account_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "BigDecimal", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "BigInt", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ + "name": "deployTransaction_not", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, { "defaultValue": null, "description": null, - "name": "number_gte", + "name": "deployTransaction_gt", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ + }, { "defaultValue": null, "description": null, - "name": "hash", + "name": "deployTransaction_lt", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "number", + "name": "deployTransaction_gte", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "number_gte", + "name": "deployTransaction_lte", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "Block_height", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Boolean", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id", + "name": "deployTransaction_in", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, - "description": "The clearer who received this bounty", - "isDeprecated": false, - "name": "clearer", + "defaultValue": null, + "description": null, + "name": "deployTransaction_not_in", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The Clear event that paid this bounty", - "isDeprecated": false, - "name": "orderClear", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderClear", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The Vault that bounty token A was deposited into", - "isDeprecated": false, - "name": "bountyVaultA", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vault", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The Vault that bounty token B was deposited into", - "isDeprecated": false, - "name": "bountyVaultB", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vault", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The A token for the bounty", - "isDeprecated": false, - "name": "bountyTokenA", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ERC20", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The B token for the bounty", - "isDeprecated": false, - "name": "bountyTokenB", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ERC20", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, - "description": "The amount paid for bounty token A", - "isDeprecated": false, - "name": "bountyAmountA", + "defaultValue": null, + "description": null, + "name": "deployTransaction_contains", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyAmountADisplay", + "name": "deployTransaction_contains_nocase", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "The amount paid for bounty token B", - "isDeprecated": false, - "name": "bountyAmountB", + "defaultValue": null, + "description": null, + "name": "deployTransaction_not_contains", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyAmountBDisplay", + "name": "deployTransaction_not_contains_nocase", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "emitter", + "name": "deployTransaction_starts_with", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Bounty", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ { "defaultValue": null, "description": null, - "name": "id", + "name": "deployTransaction_starts_with_nocase", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not", + "name": "deployTransaction_not_starts_with", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "deployTransaction_not_starts_with_nocase", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "deployTransaction_ends_with", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "deployTransaction_ends_with_nocase", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "deployTransaction_not_ends_with", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_in", + "name": "deployTransaction_not_ends_with_nocase", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "deployTransaction_", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "Transaction_filter", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "clearer", + "name": "initialDeployer", "type": { "kind": "SCALAR", "name": "String", @@ -1536,7 +1314,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_not", + "name": "initialDeployer_not", "type": { "kind": "SCALAR", "name": "String", @@ -1546,7 +1324,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_gt", + "name": "initialDeployer_gt", "type": { "kind": "SCALAR", "name": "String", @@ -1556,7 +1334,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_lt", + "name": "initialDeployer_lt", "type": { "kind": "SCALAR", "name": "String", @@ -1566,7 +1344,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_gte", + "name": "initialDeployer_gte", "type": { "kind": "SCALAR", "name": "String", @@ -1576,7 +1354,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_lte", + "name": "initialDeployer_lte", "type": { "kind": "SCALAR", "name": "String", @@ -1586,7 +1364,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_in", + "name": "initialDeployer_in", "type": { "kind": "LIST", "name": null, @@ -1604,7 +1382,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_not_in", + "name": "initialDeployer_not_in", "type": { "kind": "LIST", "name": null, @@ -1622,7 +1400,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_contains", + "name": "initialDeployer_contains", "type": { "kind": "SCALAR", "name": "String", @@ -1632,7 +1410,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_contains_nocase", + "name": "initialDeployer_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -1642,7 +1420,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_not_contains", + "name": "initialDeployer_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -1652,7 +1430,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_not_contains_nocase", + "name": "initialDeployer_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -1662,7 +1440,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_starts_with", + "name": "initialDeployer_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -1672,7 +1450,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_starts_with_nocase", + "name": "initialDeployer_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -1682,7 +1460,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_not_starts_with", + "name": "initialDeployer_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -1692,7 +1470,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_not_starts_with_nocase", + "name": "initialDeployer_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -1702,7 +1480,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_ends_with", + "name": "initialDeployer_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -1712,7 +1490,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_ends_with_nocase", + "name": "initialDeployer_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -1722,7 +1500,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_not_ends_with", + "name": "initialDeployer_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -1732,7 +1510,7 @@ { "defaultValue": null, "description": null, - "name": "clearer_not_ends_with_nocase", + "name": "initialDeployer_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -1742,17 +1520,17 @@ { "defaultValue": null, "description": null, - "name": "clearer_", + "name": "initialDeployer_", "type": { "kind": "INPUT_OBJECT", - "name": "Account_filter", + "name": "ExpressionDeployer_filter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "orderClear", + "name": "meta", "type": { "kind": "SCALAR", "name": "String", @@ -1762,7 +1540,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_not", + "name": "meta_not", "type": { "kind": "SCALAR", "name": "String", @@ -1772,7 +1550,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_gt", + "name": "meta_gt", "type": { "kind": "SCALAR", "name": "String", @@ -1782,7 +1560,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_lt", + "name": "meta_lt", "type": { "kind": "SCALAR", "name": "String", @@ -1792,7 +1570,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_gte", + "name": "meta_gte", "type": { "kind": "SCALAR", "name": "String", @@ -1802,7 +1580,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_lte", + "name": "meta_lte", "type": { "kind": "SCALAR", "name": "String", @@ -1812,7 +1590,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_in", + "name": "meta_in", "type": { "kind": "LIST", "name": null, @@ -1830,7 +1608,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_not_in", + "name": "meta_not_in", "type": { "kind": "LIST", "name": null, @@ -1848,7 +1626,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_contains", + "name": "meta_contains", "type": { "kind": "SCALAR", "name": "String", @@ -1858,7 +1636,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_contains_nocase", + "name": "meta_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -1868,7 +1646,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_not_contains", + "name": "meta_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -1878,7 +1656,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_not_contains_nocase", + "name": "meta_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -1888,7 +1666,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_starts_with", + "name": "meta_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -1898,7 +1676,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_starts_with_nocase", + "name": "meta_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -1908,7 +1686,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_not_starts_with", + "name": "meta_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -1918,7 +1696,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_not_starts_with_nocase", + "name": "meta_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -1928,7 +1706,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_ends_with", + "name": "meta_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -1938,7 +1716,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_ends_with_nocase", + "name": "meta_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -1948,7 +1726,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_not_ends_with", + "name": "meta_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -1958,7 +1736,7 @@ { "defaultValue": null, "description": null, - "name": "orderClear_not_ends_with_nocase", + "name": "meta_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -1968,77 +1746,87 @@ { "defaultValue": null, "description": null, - "name": "orderClear_", + "name": "meta_", + "type": { + "kind": "INPUT_OBJECT", + "name": "RainMetaV1_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "expressions_", "type": { "kind": "INPUT_OBJECT", - "name": "OrderClear_filter", + "name": "Expression_filter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultA", + "name": "contractMeta", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultA_not", + "name": "contractMeta_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultA_gt", + "name": "contractMeta_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultA_lt", + "name": "contractMeta_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultA_gte", + "name": "contractMeta_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultA_lte", + "name": "contractMeta_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultA_in", + "name": "contractMeta_in", "type": { "kind": "LIST", "name": null, @@ -2047,7 +1835,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -2056,7 +1844,7 @@ { "defaultValue": null, "description": null, - "name": "bountyVaultA_not_in", + "name": "contractMeta_not_in", "type": { "kind": "LIST", "name": null, @@ -2065,7 +1853,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -2074,197 +1862,87 @@ { "defaultValue": null, "description": null, - "name": "bountyVaultA_contains", + "name": "contractMeta_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultA_contains_nocase", + "name": "contractMeta_not_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultA_not_contains", + "name": "contractMetaHash", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultA_not_contains_nocase", + "name": "contractMetaHash_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultA_starts_with", + "name": "contractMetaHash_gt", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyVaultA_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyVaultA_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyVaultA_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyVaultA_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyVaultA_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyVaultA_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyVaultA_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyVaultA_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Vault_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyVaultB", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyVaultB_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyVaultB_gt", - "type": { - "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultB_lt", + "name": "contractMetaHash_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultB_gte", + "name": "contractMetaHash_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultB_lte", + "name": "contractMetaHash_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultB_in", + "name": "contractMetaHash_in", "type": { "kind": "LIST", "name": null, @@ -2273,7 +1951,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -2282,7 +1960,7 @@ { "defaultValue": null, "description": null, - "name": "bountyVaultB_not_in", + "name": "contractMetaHash_not_in", "type": { "kind": "LIST", "name": null, @@ -2291,7 +1969,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -2300,363 +1978,388 @@ { "defaultValue": null, "description": null, - "name": "bountyVaultB_contains", + "name": "contractMetaHash_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultB_contains_nocase", + "name": "contractMetaHash_not_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "bountyVaultB_not_contains", + "description": "Filter for the block changed event.", + "name": "_change_block", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyVaultB_not_contains_nocase", + "name": "and", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Contract_filter", + "ofType": null + } } }, { "defaultValue": null, "description": null, - "name": "bountyVaultB_starts_with", + "name": "or", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Contract_filter", + "ofType": null + } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "Contract_filter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyVaultB_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "id" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyVaultB_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "bytecodeHash" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyVaultB_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "deployTransaction" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyVaultB_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "deployTransaction__id" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyVaultB_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "deployTransaction__timestamp" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyVaultB_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "deployTransaction__blockNumber" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyVaultB_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "initialDeployer" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyVaultB_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Vault_filter", - "ofType": null - } + "isDeprecated": false, + "name": "initialDeployer__id" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyTokenA", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "initialDeployer__bytecodeHash" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyTokenA_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "initialDeployer__functionPointers" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyTokenA_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "initialDeployer__opmeta" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyTokenA_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "initialDeployer__opmetaHash" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyTokenA_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "meta" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyTokenA_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "meta__id" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "bountyTokenA_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "meta__metaBytes" }, { - "defaultValue": null, + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "expressions" + }, + { + "deprecationReason": null, "description": null, - "name": "bountyTokenA_not_in", + "isDeprecated": false, + "name": "contractMeta" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "contractMetaHash" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "Contract_orderBy", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } } }, { - "defaultValue": null, - "description": null, - "name": "bountyTokenA_contains", + "args": [], + "deprecationReason": null, + "description": "Transaction this event was emitted in.", + "isDeprecated": false, + "name": "transaction", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "bountyTokenA_contains_nocase", + "args": [], + "deprecationReason": null, + "description": "Account that sent the transaction this event was emitted in.", + "isDeprecated": false, + "name": "emitter", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "bountyTokenA_not_contains", + "isDeprecated": false, + "name": "timestamp", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "bountyTokenA_not_contains_nocase", + "args": [], + "deprecationReason": null, + "description": "Expression", + "isDeprecated": false, + "name": "expression", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Expression", + "ofType": null + } } - }, + } + ], + "inputFields": null, + "interfaces": [ { - "defaultValue": null, - "description": null, - "name": "bountyTokenA_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "kind": "INTERFACE", + "name": "Event", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "DeployExpressionEvent", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "bountyTokenA_starts_with_nocase", + "name": "id", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyTokenA_not_starts_with", + "name": "id_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyTokenA_not_starts_with_nocase", + "name": "id_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyTokenA_ends_with", + "name": "id_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyTokenA_ends_with_nocase", + "name": "id_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyTokenA_not_ends_with", + "name": "id_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyTokenA_not_ends_with_nocase", + "name": "id_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "bountyTokenA_", + "name": "id_not_in", "type": { - "kind": "INPUT_OBJECT", - "name": "ERC20_filter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "bountyTokenB", + "name": "transaction", "type": { "kind": "SCALAR", "name": "String", @@ -2666,7 +2369,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_not", + "name": "transaction_not", "type": { "kind": "SCALAR", "name": "String", @@ -2676,7 +2379,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_gt", + "name": "transaction_gt", "type": { "kind": "SCALAR", "name": "String", @@ -2686,7 +2389,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_lt", + "name": "transaction_lt", "type": { "kind": "SCALAR", "name": "String", @@ -2696,7 +2399,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_gte", + "name": "transaction_gte", "type": { "kind": "SCALAR", "name": "String", @@ -2706,7 +2409,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_lte", + "name": "transaction_lte", "type": { "kind": "SCALAR", "name": "String", @@ -2716,7 +2419,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_in", + "name": "transaction_in", "type": { "kind": "LIST", "name": null, @@ -2734,7 +2437,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_not_in", + "name": "transaction_not_in", "type": { "kind": "LIST", "name": null, @@ -2752,7 +2455,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_contains", + "name": "transaction_contains", "type": { "kind": "SCALAR", "name": "String", @@ -2762,7 +2465,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_contains_nocase", + "name": "transaction_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -2772,7 +2475,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_not_contains", + "name": "transaction_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -2782,7 +2485,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_not_contains_nocase", + "name": "transaction_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -2792,7 +2495,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_starts_with", + "name": "transaction_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -2802,7 +2505,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_starts_with_nocase", + "name": "transaction_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -2812,7 +2515,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_not_starts_with", + "name": "transaction_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -2822,7 +2525,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_not_starts_with_nocase", + "name": "transaction_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -2832,7 +2535,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_ends_with", + "name": "transaction_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -2842,7 +2545,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_ends_with_nocase", + "name": "transaction_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -2852,7 +2555,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_not_ends_with", + "name": "transaction_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -2862,7 +2565,7 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_not_ends_with_nocase", + "name": "transaction_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -2872,77 +2575,77 @@ { "defaultValue": null, "description": null, - "name": "bountyTokenB_", + "name": "transaction_", "type": { "kind": "INPUT_OBJECT", - "name": "ERC20_filter", + "name": "Transaction_filter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountA", + "name": "emitter", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountA_not", + "name": "emitter_not", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountA_gt", + "name": "emitter_gt", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountA_lt", + "name": "emitter_lt", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountA_gte", + "name": "emitter_gte", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountA_lte", + "name": "emitter_lte", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountA_in", + "name": "emitter_in", "type": { "kind": "LIST", "name": null, @@ -2951,7 +2654,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -2960,7 +2663,7 @@ { "defaultValue": null, "description": null, - "name": "bountyAmountA_not_in", + "name": "emitter_not_in", "type": { "kind": "LIST", "name": null, @@ -2969,7 +2672,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -2978,259 +2681,197 @@ { "defaultValue": null, "description": null, - "name": "bountyAmountADisplay", + "name": "emitter_contains", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountADisplay_not", + "name": "emitter_contains_nocase", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountADisplay_gt", + "name": "emitter_not_contains", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountADisplay_lt", + "name": "emitter_not_contains_nocase", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountADisplay_gte", + "name": "emitter_starts_with", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountADisplay_lte", + "name": "emitter_starts_with_nocase", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountADisplay_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyAmountADisplay_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyAmountB", + "name": "emitter_not_starts_with", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountB_not", + "name": "emitter_not_starts_with_nocase", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountB_gt", + "name": "emitter_ends_with", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountB_lt", + "name": "emitter_ends_with_nocase", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountB_gte", + "name": "emitter_not_ends_with", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountB_lte", + "name": "emitter_not_ends_with_nocase", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountB_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bountyAmountB_not_in", + "name": "emitter_", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "Account_filter", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountBDisplay", + "name": "timestamp", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountBDisplay_not", + "name": "timestamp_not", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountBDisplay_gt", + "name": "timestamp_gt", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountBDisplay_lt", + "name": "timestamp_lt", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountBDisplay_gte", + "name": "timestamp_gte", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountBDisplay_lte", + "name": "timestamp_lte", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bountyAmountBDisplay_in", + "name": "timestamp_in", "type": { "kind": "LIST", "name": null, @@ -3239,7 +2880,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } } @@ -3248,7 +2889,7 @@ { "defaultValue": null, "description": null, - "name": "bountyAmountBDisplay_not_in", + "name": "timestamp_not_in", "type": { "kind": "LIST", "name": null, @@ -3257,7 +2898,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "BigInt", "ofType": null } } @@ -3266,7 +2907,7 @@ { "defaultValue": null, "description": null, - "name": "transaction", + "name": "expression", "type": { "kind": "SCALAR", "name": "String", @@ -3276,7 +2917,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not", + "name": "expression_not", "type": { "kind": "SCALAR", "name": "String", @@ -3286,7 +2927,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_gt", + "name": "expression_gt", "type": { "kind": "SCALAR", "name": "String", @@ -3296,7 +2937,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_lt", + "name": "expression_lt", "type": { "kind": "SCALAR", "name": "String", @@ -3306,7 +2947,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_gte", + "name": "expression_gte", "type": { "kind": "SCALAR", "name": "String", @@ -3316,7 +2957,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_lte", + "name": "expression_lte", "type": { "kind": "SCALAR", "name": "String", @@ -3326,7 +2967,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_in", + "name": "expression_in", "type": { "kind": "LIST", "name": null, @@ -3344,7 +2985,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_in", + "name": "expression_not_in", "type": { "kind": "LIST", "name": null, @@ -3362,7 +3003,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_contains", + "name": "expression_contains", "type": { "kind": "SCALAR", "name": "String", @@ -3372,7 +3013,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_contains_nocase", + "name": "expression_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -3382,7 +3023,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_contains", + "name": "expression_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -3392,7 +3033,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_contains_nocase", + "name": "expression_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -3402,7 +3043,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_starts_with", + "name": "expression_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -3412,7 +3053,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_starts_with_nocase", + "name": "expression_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -3422,7 +3063,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_starts_with", + "name": "expression_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -3432,7 +3073,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_starts_with_nocase", + "name": "expression_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -3442,7 +3083,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_ends_with", + "name": "expression_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -3452,7 +3093,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_ends_with_nocase", + "name": "expression_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -3462,7 +3103,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_ends_with", + "name": "expression_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -3472,7 +3113,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_ends_with_nocase", + "name": "expression_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -3482,303 +3123,374 @@ { "defaultValue": null, "description": null, - "name": "transaction_", + "name": "expression_", "type": { "kind": "INPUT_OBJECT", - "name": "Transaction_filter", + "name": "Expression_filter", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "emitter", + "description": "Filter for the block changed event.", + "name": "_change_block", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "emitter_not", + "name": "and", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeployExpressionEvent_filter", + "ofType": null + } } }, { "defaultValue": null, "description": null, - "name": "emitter_gt", + "name": "or", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeployExpressionEvent_filter", + "ofType": null + } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeployExpressionEvent_filter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "emitter_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "id" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "emitter_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "transaction" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "emitter_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "transaction__id" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "emitter_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "transaction__timestamp" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "emitter_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "transaction__blockNumber" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "emitter_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "emitter" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "emitter_contains_nocase", + "isDeprecated": false, + "name": "emitter__id" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "timestamp" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "expression" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "expression__id" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "DeployExpressionEvent_orderBy", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "emitter_not_contains", + "args": [], + "deprecationReason": null, + "description": "Transaction this event was emitted in.", + "isDeprecated": false, + "name": "transaction", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "emitter_not_contains_nocase", + "args": [], + "deprecationReason": null, + "description": "Account that sent the transaction this event was emitted in.", + "isDeprecated": false, + "name": "emitter", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "emitter_starts_with", + "isDeprecated": false, + "name": "timestamp", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } - }, + } + ], + "inputFields": null, + "interfaces": null, + "kind": "INTERFACE", + "name": "Event", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DeployExpressionEvent", + "ofType": null + } + ] + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "emitter_starts_with_nocase", + "name": "id", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "emitter_not_starts_with", + "name": "id_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "emitter_not_starts_with_nocase", + "name": "id_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "emitter_ends_with", + "name": "id_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "emitter_ends_with_nocase", + "name": "id_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "emitter_not_ends_with", + "name": "id_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "emitter_not_ends_with_nocase", + "name": "id_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "emitter_", + "name": "id_not_in", "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "timestamp", + "name": "transaction", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "timestamp_not", + "name": "transaction_not", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "timestamp_gt", + "name": "transaction_gt", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "timestamp_lt", + "name": "transaction_lt", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "timestamp_gte", + "name": "transaction_gte", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "timestamp_lte", + "name": "transaction_lte", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "timestamp_in", + "name": "transaction_in", "type": { "kind": "LIST", "name": null, @@ -3787,7 +3499,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -3796,7 +3508,7 @@ { "defaultValue": null, "description": null, - "name": "timestamp_not_in", + "name": "transaction_not_in", "type": { "kind": "LIST", "name": null, @@ -3805,7 +3517,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -3813,242 +3525,508 @@ }, { "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", + "description": null, + "name": "transaction_contains", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "and", + "name": "transaction_contains_nocase", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Bounty_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "or", + "name": "transaction_not_contains", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Bounty_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "Bounty_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ + }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id" + "name": "transaction_not_contains_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "clearer" + "name": "transaction_starts_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "clearer__id" + "name": "transaction_starts_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "orderClear" + "name": "transaction_not_starts_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "orderClear__id" + "name": "transaction_not_starts_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "orderClear__aInputIOIndex" + "name": "transaction_ends_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "orderClear__aOutputIOIndex" + "name": "transaction_ends_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "orderClear__bInputIOIndex" + "name": "transaction_not_ends_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "orderClear__bOutputIOIndex" + "name": "transaction_not_ends_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "orderClear__timestamp" + "name": "transaction_", + "type": { + "kind": "INPUT_OBJECT", + "name": "Transaction_filter", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyVaultA" + "name": "emitter", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyVaultA__id" + "name": "emitter_not", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyVaultB" + "name": "emitter_gt", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyVaultB__id" + "name": "emitter_lt", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenA" + "name": "emitter_gte", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenA__id" + "name": "emitter_lte", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenA__name" + "name": "emitter_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenA__symbol" + "name": "emitter_not_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenA__totalSupply" + "name": "emitter_contains", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenA__totalSupplyDisplay" + "name": "emitter_contains_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenA__decimals" + "name": "emitter_not_contains", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenB" + "name": "emitter_not_contains_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenB__id" + "name": "emitter_starts_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenB__name" + "name": "emitter_starts_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenB__symbol" + "name": "emitter_not_starts_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenB__totalSupply" + "name": "emitter_not_starts_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenB__totalSupplyDisplay" + "name": "emitter_ends_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyTokenB__decimals" - }, - { - "deprecationReason": null, + "name": "emitter_ends_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyAmountA" + "name": "emitter_not_ends_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyAmountADisplay" + "name": "emitter_not_ends_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "bountyAmountB" + "name": "emitter_", + "type": { + "kind": "INPUT_OBJECT", + "name": "Account_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "timestamp_not", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "timestamp_gt", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "timestamp_lt", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "timestamp_gte", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "timestamp_lte", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "timestamp_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "timestamp_not_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "Filter for the block changed event.", + "name": "_change_block", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Event_filter", + "ofType": null + } + } }, + { + "defaultValue": null, + "description": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Event_filter", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "Event_filter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "bountyAmountBDisplay" + "name": "id" }, { "deprecationReason": null, @@ -4097,17 +4075,7 @@ "inputFields": null, "interfaces": null, "kind": "ENUM", - "name": "Bounty_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Bytes", + "name": "Event_orderBy", "possibleTypes": null }, { @@ -4117,7 +4085,7 @@ { "args": [], "deprecationReason": null, - "description": null, + "description": "Address for this expression", "isDeprecated": false, "name": "id", "type": { @@ -4135,13 +4103,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "orderClearId", + "name": "event", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "OrderClear", + "name": "DeployExpressionEvent", "ofType": null } } @@ -4149,15 +4117,15 @@ { "args": [], "deprecationReason": null, - "description": null, + "description": "Account that deployed this expression", "isDeprecated": false, - "name": "tokenVaultBountyAlice", + "name": "account", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "TokenVault", + "name": "Account", "ofType": null } } @@ -4165,31 +4133,15 @@ { "args": [], "deprecationReason": null, - "description": null, + "description": "The contract that this expression was deployed via", "isDeprecated": false, - "name": "tokenVaultBountyBob", + "name": "sender", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "TokenVault", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aliceTokenVaultInput", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "Contract", "ofType": null } } @@ -4199,13 +4151,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "aliceTokenVaultOutput", + "name": "interpreter", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Interpreter", "ofType": null } } @@ -4215,13 +4167,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "bobTokenVaultInput", + "name": "interpreterInstance", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "InterpreterInstance", "ofType": null } } @@ -4231,13 +4183,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "bobTokenVaultOutput", + "name": "config", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "StateConfig", "ofType": null } } @@ -4246,41 +4198,176 @@ "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "ClearOrderConfig", + "name": "Expression", "possibleTypes": null }, { "description": null, "enumValues": null, - "fields": null, - "inputFields": [ + "fields": [ { - "defaultValue": null, - "description": null, + "args": [], + "deprecationReason": null, + "description": "The address of this deployer.", + "isDeprecated": false, "name": "id", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not", + "isDeprecated": false, + "name": "deployTransaction", "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "Transaction", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "id_gt", + "args": [], + "deprecationReason": null, + "description": "Bytecode hash of this Deployer", + "isDeprecated": false, + "name": "bytecodeHash", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "The interpreter instance this deployer uses.", + "isDeprecated": false, + "name": "interpreter", + "type": { + "kind": "OBJECT", + "name": "InterpreterInstance", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "The RainterpreterStore instance being used by the deployer", + "isDeprecated": false, + "name": "store", + "type": { + "kind": "OBJECT", + "name": "RainterpreterStoreInstance", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "The account that deployed this IExpressionDeployerV1", + "isDeprecated": false, + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "functionPointers", + "isDeprecated": false, + "name": "functionPointers", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "Raw opmeta", + "isDeprecated": false, + "name": "opmeta", + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "Raw opmeta hash", + "isDeprecated": false, + "name": "opmetaHash", + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "Op meta", + "isDeprecated": false, + "name": "meta", + "type": { + "kind": "OBJECT", + "name": "RainMetaV1", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ExpressionDeployer", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id_not", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id_gt", + "type": { + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -4353,7 +4440,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId", + "name": "deployTransaction", "type": { "kind": "SCALAR", "name": "String", @@ -4363,7 +4450,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_not", + "name": "deployTransaction_not", "type": { "kind": "SCALAR", "name": "String", @@ -4373,7 +4460,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_gt", + "name": "deployTransaction_gt", "type": { "kind": "SCALAR", "name": "String", @@ -4383,7 +4470,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_lt", + "name": "deployTransaction_lt", "type": { "kind": "SCALAR", "name": "String", @@ -4393,7 +4480,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_gte", + "name": "deployTransaction_gte", "type": { "kind": "SCALAR", "name": "String", @@ -4403,7 +4490,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_lte", + "name": "deployTransaction_lte", "type": { "kind": "SCALAR", "name": "String", @@ -4413,7 +4500,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_in", + "name": "deployTransaction_in", "type": { "kind": "LIST", "name": null, @@ -4431,7 +4518,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_not_in", + "name": "deployTransaction_not_in", "type": { "kind": "LIST", "name": null, @@ -4449,7 +4536,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_contains", + "name": "deployTransaction_contains", "type": { "kind": "SCALAR", "name": "String", @@ -4459,7 +4546,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_contains_nocase", + "name": "deployTransaction_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4469,7 +4556,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_not_contains", + "name": "deployTransaction_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -4479,7 +4566,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_not_contains_nocase", + "name": "deployTransaction_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4489,7 +4576,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_starts_with", + "name": "deployTransaction_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -4499,7 +4586,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_starts_with_nocase", + "name": "deployTransaction_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4509,7 +4596,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_not_starts_with", + "name": "deployTransaction_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -4519,7 +4606,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_not_starts_with_nocase", + "name": "deployTransaction_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4529,7 +4616,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_ends_with", + "name": "deployTransaction_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -4539,7 +4626,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_ends_with_nocase", + "name": "deployTransaction_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4549,7 +4636,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_not_ends_with", + "name": "deployTransaction_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -4559,7 +4646,7 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_not_ends_with_nocase", + "name": "deployTransaction_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4569,17 +4656,17 @@ { "defaultValue": null, "description": null, - "name": "orderClearId_", + "name": "deployTransaction_", "type": { "kind": "INPUT_OBJECT", - "name": "OrderClear_filter", + "name": "Transaction_filter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice", + "name": "bytecodeHash", "type": { "kind": "SCALAR", "name": "String", @@ -4589,7 +4676,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_not", + "name": "bytecodeHash_not", "type": { "kind": "SCALAR", "name": "String", @@ -4599,7 +4686,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_gt", + "name": "bytecodeHash_gt", "type": { "kind": "SCALAR", "name": "String", @@ -4609,7 +4696,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_lt", + "name": "bytecodeHash_lt", "type": { "kind": "SCALAR", "name": "String", @@ -4619,7 +4706,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_gte", + "name": "bytecodeHash_gte", "type": { "kind": "SCALAR", "name": "String", @@ -4629,7 +4716,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_lte", + "name": "bytecodeHash_lte", "type": { "kind": "SCALAR", "name": "String", @@ -4639,7 +4726,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_in", + "name": "bytecodeHash_in", "type": { "kind": "LIST", "name": null, @@ -4657,7 +4744,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_not_in", + "name": "bytecodeHash_not_in", "type": { "kind": "LIST", "name": null, @@ -4675,7 +4762,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_contains", + "name": "bytecodeHash_contains", "type": { "kind": "SCALAR", "name": "String", @@ -4685,7 +4772,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_contains_nocase", + "name": "bytecodeHash_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4695,7 +4782,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_not_contains", + "name": "bytecodeHash_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -4705,7 +4792,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_not_contains_nocase", + "name": "bytecodeHash_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4715,7 +4802,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_starts_with", + "name": "bytecodeHash_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -4725,7 +4812,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_starts_with_nocase", + "name": "bytecodeHash_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4735,7 +4822,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_not_starts_with", + "name": "bytecodeHash_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -4745,7 +4832,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_not_starts_with_nocase", + "name": "bytecodeHash_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4755,7 +4842,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_ends_with", + "name": "bytecodeHash_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -4765,7 +4852,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_ends_with_nocase", + "name": "bytecodeHash_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4775,7 +4862,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_not_ends_with", + "name": "bytecodeHash_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -4785,7 +4872,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_not_ends_with_nocase", + "name": "bytecodeHash_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4795,17 +4882,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyAlice_", - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVaultBountyBob", + "name": "interpreter", "type": { "kind": "SCALAR", "name": "String", @@ -4815,7 +4892,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_not", + "name": "interpreter_not", "type": { "kind": "SCALAR", "name": "String", @@ -4825,7 +4902,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_gt", + "name": "interpreter_gt", "type": { "kind": "SCALAR", "name": "String", @@ -4835,7 +4912,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_lt", + "name": "interpreter_lt", "type": { "kind": "SCALAR", "name": "String", @@ -4845,7 +4922,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_gte", + "name": "interpreter_gte", "type": { "kind": "SCALAR", "name": "String", @@ -4855,7 +4932,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_lte", + "name": "interpreter_lte", "type": { "kind": "SCALAR", "name": "String", @@ -4865,7 +4942,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_in", + "name": "interpreter_in", "type": { "kind": "LIST", "name": null, @@ -4883,7 +4960,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_not_in", + "name": "interpreter_not_in", "type": { "kind": "LIST", "name": null, @@ -4901,7 +4978,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_contains", + "name": "interpreter_contains", "type": { "kind": "SCALAR", "name": "String", @@ -4911,7 +4988,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_contains_nocase", + "name": "interpreter_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4921,7 +4998,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_not_contains", + "name": "interpreter_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -4931,7 +5008,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_not_contains_nocase", + "name": "interpreter_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4941,7 +5018,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_starts_with", + "name": "interpreter_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -4951,7 +5028,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_starts_with_nocase", + "name": "interpreter_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4961,7 +5038,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_not_starts_with", + "name": "interpreter_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -4971,7 +5048,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_not_starts_with_nocase", + "name": "interpreter_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -4981,7 +5058,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_ends_with", + "name": "interpreter_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -4991,7 +5068,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_ends_with_nocase", + "name": "interpreter_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5001,7 +5078,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_not_ends_with", + "name": "interpreter_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -5011,7 +5088,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_not_ends_with_nocase", + "name": "interpreter_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5021,17 +5098,17 @@ { "defaultValue": null, "description": null, - "name": "tokenVaultBountyBob_", + "name": "interpreter_", "type": { "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", + "name": "InterpreterInstance_filter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput", + "name": "store", "type": { "kind": "SCALAR", "name": "String", @@ -5041,7 +5118,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_not", + "name": "store_not", "type": { "kind": "SCALAR", "name": "String", @@ -5051,7 +5128,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_gt", + "name": "store_gt", "type": { "kind": "SCALAR", "name": "String", @@ -5061,7 +5138,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_lt", + "name": "store_lt", "type": { "kind": "SCALAR", "name": "String", @@ -5071,7 +5148,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_gte", + "name": "store_gte", "type": { "kind": "SCALAR", "name": "String", @@ -5081,7 +5158,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_lte", + "name": "store_lte", "type": { "kind": "SCALAR", "name": "String", @@ -5091,7 +5168,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_in", + "name": "store_in", "type": { "kind": "LIST", "name": null, @@ -5109,7 +5186,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_not_in", + "name": "store_not_in", "type": { "kind": "LIST", "name": null, @@ -5127,7 +5204,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_contains", + "name": "store_contains", "type": { "kind": "SCALAR", "name": "String", @@ -5137,7 +5214,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_contains_nocase", + "name": "store_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5147,7 +5224,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_not_contains", + "name": "store_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -5157,7 +5234,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_not_contains_nocase", + "name": "store_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5167,7 +5244,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_starts_with", + "name": "store_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -5177,7 +5254,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_starts_with_nocase", + "name": "store_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5187,7 +5264,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_not_starts_with", + "name": "store_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -5197,7 +5274,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_not_starts_with_nocase", + "name": "store_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5207,7 +5284,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_ends_with", + "name": "store_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -5217,7 +5294,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_ends_with_nocase", + "name": "store_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5227,7 +5304,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_not_ends_with", + "name": "store_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -5237,7 +5314,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultInput_not_ends_with_nocase", + "name": "store_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5247,7 +5324,17 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput", + "name": "store_", + "type": { + "kind": "INPUT_OBJECT", + "name": "RainterpreterStoreInstance_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "account", "type": { "kind": "SCALAR", "name": "String", @@ -5257,7 +5344,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_not", + "name": "account_not", "type": { "kind": "SCALAR", "name": "String", @@ -5267,7 +5354,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_gt", + "name": "account_gt", "type": { "kind": "SCALAR", "name": "String", @@ -5277,7 +5364,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_lt", + "name": "account_lt", "type": { "kind": "SCALAR", "name": "String", @@ -5287,7 +5374,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_gte", + "name": "account_gte", "type": { "kind": "SCALAR", "name": "String", @@ -5297,7 +5384,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_lte", + "name": "account_lte", "type": { "kind": "SCALAR", "name": "String", @@ -5307,7 +5394,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_in", + "name": "account_in", "type": { "kind": "LIST", "name": null, @@ -5325,7 +5412,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_not_in", + "name": "account_not_in", "type": { "kind": "LIST", "name": null, @@ -5343,7 +5430,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_contains", + "name": "account_contains", "type": { "kind": "SCALAR", "name": "String", @@ -5353,7 +5440,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_contains_nocase", + "name": "account_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5363,7 +5450,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_not_contains", + "name": "account_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -5373,7 +5460,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_not_contains_nocase", + "name": "account_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5383,7 +5470,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_starts_with", + "name": "account_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -5393,7 +5480,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_starts_with_nocase", + "name": "account_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5403,7 +5490,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_not_starts_with", + "name": "account_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -5413,7 +5500,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_not_starts_with_nocase", + "name": "account_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5423,7 +5510,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_ends_with", + "name": "account_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -5433,7 +5520,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_ends_with_nocase", + "name": "account_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5443,7 +5530,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_not_ends_with", + "name": "account_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -5453,7 +5540,7 @@ { "defaultValue": null, "description": null, - "name": "aliceTokenVaultOutput_not_ends_with_nocase", + "name": "account_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5463,7 +5550,17 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput", + "name": "account_", + "type": { + "kind": "INPUT_OBJECT", + "name": "Account_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "functionPointers", "type": { "kind": "SCALAR", "name": "String", @@ -5473,7 +5570,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_not", + "name": "functionPointers_not", "type": { "kind": "SCALAR", "name": "String", @@ -5483,7 +5580,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_gt", + "name": "functionPointers_gt", "type": { "kind": "SCALAR", "name": "String", @@ -5493,7 +5590,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_lt", + "name": "functionPointers_lt", "type": { "kind": "SCALAR", "name": "String", @@ -5503,7 +5600,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_gte", + "name": "functionPointers_gte", "type": { "kind": "SCALAR", "name": "String", @@ -5513,7 +5610,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_lte", + "name": "functionPointers_lte", "type": { "kind": "SCALAR", "name": "String", @@ -5523,7 +5620,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_in", + "name": "functionPointers_in", "type": { "kind": "LIST", "name": null, @@ -5541,7 +5638,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_not_in", + "name": "functionPointers_not_in", "type": { "kind": "LIST", "name": null, @@ -5559,7 +5656,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_contains", + "name": "functionPointers_contains", "type": { "kind": "SCALAR", "name": "String", @@ -5569,7 +5666,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_contains_nocase", + "name": "functionPointers_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5579,7 +5676,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_not_contains", + "name": "functionPointers_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -5589,7 +5686,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_not_contains_nocase", + "name": "functionPointers_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5599,7 +5696,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_starts_with", + "name": "functionPointers_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -5609,7 +5706,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_starts_with_nocase", + "name": "functionPointers_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5619,7 +5716,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_not_starts_with", + "name": "functionPointers_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -5629,7 +5726,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_not_starts_with_nocase", + "name": "functionPointers_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5639,7 +5736,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_ends_with", + "name": "functionPointers_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -5649,7 +5746,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_ends_with_nocase", + "name": "functionPointers_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5659,7 +5756,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_not_ends_with", + "name": "functionPointers_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -5669,7 +5766,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultInput_not_ends_with_nocase", + "name": "functionPointers_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -5679,67 +5776,67 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput", + "name": "opmeta", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_not", + "name": "opmeta_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_gt", + "name": "opmeta_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_lt", + "name": "opmeta_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_gte", + "name": "opmeta_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_lte", + "name": "opmeta_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_in", + "name": "opmeta_in", "type": { "kind": "LIST", "name": null, @@ -5748,7 +5845,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -5757,7 +5854,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_not_in", + "name": "opmeta_not_in", "type": { "kind": "LIST", "name": null, @@ -5766,7 +5863,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -5775,107 +5872,143 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_contains", + "name": "opmeta_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_contains_nocase", + "name": "opmeta_not_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_not_contains", + "name": "opmetaHash", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_not_contains_nocase", + "name": "opmetaHash_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_starts_with", + "name": "opmetaHash_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_starts_with_nocase", + "name": "opmetaHash_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_not_starts_with", + "name": "opmetaHash_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_not_starts_with_nocase", + "name": "opmetaHash_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_ends_with", + "name": "opmetaHash_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "opmetaHash_not_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "opmetaHash_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_ends_with_nocase", + "name": "opmetaHash_not_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_not_ends_with", + "name": "meta", "type": { "kind": "SCALAR", "name": "String", @@ -5885,7 +6018,7 @@ { "defaultValue": null, "description": null, - "name": "bobTokenVaultOutput_not_ends_with_nocase", + "name": "meta_not", "type": { "kind": "SCALAR", "name": "String", @@ -5894,308 +6027,395 @@ }, { "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", + "description": null, + "name": "meta_gt", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "and", + "name": "meta_lt", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ClearOrderConfig_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "or", + "name": "meta_gte", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ClearOrderConfig_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "ClearOrderConfig_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ + }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id" + "name": "meta_lte", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "orderClearId" + "name": "meta_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_not_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_contains", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_contains_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_not_contains", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_not_contains_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_starts_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_starts_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_not_starts_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_not_starts_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_ends_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_ends_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_not_ends_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_not_ends_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "meta_", + "type": { + "kind": "INPUT_OBJECT", + "name": "RainMetaV1_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Filter for the block changed event.", + "name": "_change_block", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExpressionDeployer_filter", + "ofType": null + } + } }, + { + "defaultValue": null, + "description": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExpressionDeployer_filter", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExpressionDeployer_filter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "orderClearId__id" + "name": "id" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "orderClearId__aInputIOIndex" + "name": "deployTransaction" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "orderClearId__aOutputIOIndex" + "name": "deployTransaction__id" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "orderClearId__bInputIOIndex" + "name": "deployTransaction__timestamp" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "orderClearId__bOutputIOIndex" + "name": "deployTransaction__blockNumber" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "orderClearId__timestamp" + "name": "bytecodeHash" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "tokenVaultBountyAlice" + "name": "interpreter" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "tokenVaultBountyAlice__id" + "name": "interpreter__id" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "tokenVaultBountyAlice__balance" + "name": "store" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "tokenVaultBountyAlice__balanceDisplay" + "name": "store__id" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "tokenVaultBountyBob" + "name": "account" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "tokenVaultBountyBob__id" + "name": "account__id" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "tokenVaultBountyBob__balance" + "name": "functionPointers" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "tokenVaultBountyBob__balanceDisplay" + "name": "opmeta" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "aliceTokenVaultInput" + "name": "opmetaHash" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "aliceTokenVaultOutput" + "name": "meta" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "bobTokenVaultInput" + "name": "meta__id" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "bobTokenVaultOutput" + "name": "meta__metaBytes" } ], "fields": null, "inputFields": null, "interfaces": null, "kind": "ENUM", - "name": "ClearOrderConfig_orderBy", + "name": "ExpressionDeployer_orderBy", "possibleTypes": null }, { "description": null, "enumValues": null, - "fields": [ + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, "name": "id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "symbol", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalSupply", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalSupplyDisplay", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "decimals", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "ERC20", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not", + "name": "id_not", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } }, @@ -6205,7 +6425,7 @@ "name": "id_gt", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } }, @@ -6215,7 +6435,7 @@ "name": "id_lt", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } }, @@ -6225,7 +6445,7 @@ "name": "id_gte", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } }, @@ -6235,7 +6455,7 @@ "name": "id_lte", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } }, @@ -6251,7 +6471,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } } @@ -6269,7 +6489,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Bytes", + "name": "ID", "ofType": null } } @@ -6278,27 +6498,7 @@ { "defaultValue": null, "description": null, - "name": "id_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", + "name": "event", "type": { "kind": "SCALAR", "name": "String", @@ -6308,7 +6508,7 @@ { "defaultValue": null, "description": null, - "name": "name_not", + "name": "event_not", "type": { "kind": "SCALAR", "name": "String", @@ -6318,7 +6518,7 @@ { "defaultValue": null, "description": null, - "name": "name_gt", + "name": "event_gt", "type": { "kind": "SCALAR", "name": "String", @@ -6328,7 +6528,7 @@ { "defaultValue": null, "description": null, - "name": "name_lt", + "name": "event_lt", "type": { "kind": "SCALAR", "name": "String", @@ -6338,7 +6538,7 @@ { "defaultValue": null, "description": null, - "name": "name_gte", + "name": "event_gte", "type": { "kind": "SCALAR", "name": "String", @@ -6348,7 +6548,7 @@ { "defaultValue": null, "description": null, - "name": "name_lte", + "name": "event_lte", "type": { "kind": "SCALAR", "name": "String", @@ -6358,7 +6558,7 @@ { "defaultValue": null, "description": null, - "name": "name_in", + "name": "event_in", "type": { "kind": "LIST", "name": null, @@ -6376,7 +6576,7 @@ { "defaultValue": null, "description": null, - "name": "name_not_in", + "name": "event_not_in", "type": { "kind": "LIST", "name": null, @@ -6394,7 +6594,7 @@ { "defaultValue": null, "description": null, - "name": "name_contains", + "name": "event_contains", "type": { "kind": "SCALAR", "name": "String", @@ -6404,7 +6604,7 @@ { "defaultValue": null, "description": null, - "name": "name_contains_nocase", + "name": "event_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -6414,7 +6614,7 @@ { "defaultValue": null, "description": null, - "name": "name_not_contains", + "name": "event_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -6424,7 +6624,7 @@ { "defaultValue": null, "description": null, - "name": "name_not_contains_nocase", + "name": "event_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -6434,7 +6634,7 @@ { "defaultValue": null, "description": null, - "name": "name_starts_with", + "name": "event_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -6444,7 +6644,7 @@ { "defaultValue": null, "description": null, - "name": "name_starts_with_nocase", + "name": "event_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -6454,7 +6654,7 @@ { "defaultValue": null, "description": null, - "name": "name_not_starts_with", + "name": "event_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -6464,7 +6664,7 @@ { "defaultValue": null, "description": null, - "name": "name_not_starts_with_nocase", + "name": "event_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -6474,7 +6674,7 @@ { "defaultValue": null, "description": null, - "name": "name_ends_with", + "name": "event_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -6484,7 +6684,7 @@ { "defaultValue": null, "description": null, - "name": "name_ends_with_nocase", + "name": "event_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -6494,7 +6694,7 @@ { "defaultValue": null, "description": null, - "name": "name_not_ends_with", + "name": "event_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -6504,7 +6704,7 @@ { "defaultValue": null, "description": null, - "name": "name_not_ends_with_nocase", + "name": "event_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -6514,7 +6714,17 @@ { "defaultValue": null, "description": null, - "name": "symbol", + "name": "event_", + "type": { + "kind": "INPUT_OBJECT", + "name": "DeployExpressionEvent_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "account", "type": { "kind": "SCALAR", "name": "String", @@ -6524,7 +6734,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_not", + "name": "account_not", "type": { "kind": "SCALAR", "name": "String", @@ -6534,7 +6744,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_gt", + "name": "account_gt", "type": { "kind": "SCALAR", "name": "String", @@ -6544,7 +6754,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_lt", + "name": "account_lt", "type": { "kind": "SCALAR", "name": "String", @@ -6554,7 +6764,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_gte", + "name": "account_gte", "type": { "kind": "SCALAR", "name": "String", @@ -6564,7 +6774,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_lte", + "name": "account_lte", "type": { "kind": "SCALAR", "name": "String", @@ -6574,7 +6784,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_in", + "name": "account_in", "type": { "kind": "LIST", "name": null, @@ -6592,7 +6802,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_not_in", + "name": "account_not_in", "type": { "kind": "LIST", "name": null, @@ -6610,7 +6820,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_contains", + "name": "account_contains", "type": { "kind": "SCALAR", "name": "String", @@ -6620,7 +6830,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_contains_nocase", + "name": "account_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -6630,7 +6840,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_not_contains", + "name": "account_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -6640,7 +6850,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_not_contains_nocase", + "name": "account_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -6650,7 +6860,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_starts_with", + "name": "account_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -6660,7 +6870,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_starts_with_nocase", + "name": "account_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -6670,7 +6880,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_not_starts_with", + "name": "account_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -6680,7 +6890,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_not_starts_with_nocase", + "name": "account_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -6690,7 +6900,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_ends_with", + "name": "account_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -6700,7 +6910,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_ends_with_nocase", + "name": "account_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -6710,7 +6920,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_not_ends_with", + "name": "account_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -6720,7 +6930,7 @@ { "defaultValue": null, "description": null, - "name": "symbol_not_ends_with_nocase", + "name": "account_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -6730,67 +6940,77 @@ { "defaultValue": null, "description": null, - "name": "totalSupply", + "name": "account_", + "type": { + "kind": "INPUT_OBJECT", + "name": "Account_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sender", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupply_not", + "name": "sender_not", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupply_gt", + "name": "sender_gt", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupply_lt", + "name": "sender_lt", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupply_gte", + "name": "sender_gte", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupply_lte", + "name": "sender_lte", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupply_in", + "name": "sender_in", "type": { "kind": "LIST", "name": null, @@ -6799,7 +7019,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -6808,7 +7028,7 @@ { "defaultValue": null, "description": null, - "name": "totalSupply_not_in", + "name": "sender_not_in", "type": { "kind": "LIST", "name": null, @@ -6817,7 +7037,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -6826,492 +7046,363 @@ { "defaultValue": null, "description": null, - "name": "totalSupplyDisplay", + "name": "sender_contains", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupplyDisplay_not", + "name": "sender_contains_nocase", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupplyDisplay_gt", + "name": "sender_not_contains", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupplyDisplay_lt", + "name": "sender_not_contains_nocase", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupplyDisplay_gte", + "name": "sender_starts_with", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupplyDisplay_lte", + "name": "sender_starts_with_nocase", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupplyDisplay_in", + "name": "sender_not_starts_with", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "totalSupplyDisplay_not_in", + "name": "sender_not_starts_with_nocase", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "decimals", + "name": "sender_ends_with", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "decimals_not", + "name": "sender_ends_with_nocase", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "decimals_gt", + "name": "sender_not_ends_with", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "decimals_lt", + "name": "sender_not_ends_with_nocase", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "decimals_gte", + "name": "sender_", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "Contract_filter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "decimals_lte", + "name": "interpreter", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "decimals_in", + "name": "interpreter_not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "decimals_not_in", + "name": "interpreter_gt", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", + "description": null, + "name": "interpreter_lt", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "and", + "name": "interpreter_gte", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ERC20_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "or", + "name": "interpreter_lte", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ERC20_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "ERC20_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name" }, { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "symbol" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalSupply" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalSupplyDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "decimals" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "ERC20_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id", + "name": "interpreter_in", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, - "description": "Transaction this event was emitted in.", - "isDeprecated": false, - "name": "transaction", + "defaultValue": null, + "description": null, + "name": "interpreter_not_in", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, - "description": "Account that sent the transaction this event was emitted in.", - "isDeprecated": false, - "name": "emitter", + "defaultValue": null, + "description": null, + "name": "interpreter_contains", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "timestamp", + "name": "interpreter_contains_nocase", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "inputFields": null, - "interfaces": null, - "kind": "INTERFACE", - "name": "Event", - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Order", - "ofType": null }, { - "kind": "OBJECT", - "name": "VaultDeposit", - "ofType": null + "defaultValue": null, + "description": null, + "name": "interpreter_not_contains", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "kind": "OBJECT", - "name": "VaultWithdraw", - "ofType": null + "defaultValue": null, + "description": null, + "name": "interpreter_not_contains_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "kind": "OBJECT", - "name": "OrderClear", - "ofType": null + "defaultValue": null, + "description": null, + "name": "interpreter_starts_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "kind": "OBJECT", - "name": "TakeOrderEntity", - "ofType": null - } - ] - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ { "defaultValue": null, "description": null, - "name": "id", + "name": "interpreter_starts_with_nocase", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not", + "name": "interpreter_not_starts_with", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "interpreter_not_starts_with_nocase", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "interpreter_ends_with", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "interpreter_ends_with_nocase", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "interpreter_not_ends_with", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_in", + "name": "interpreter_not_ends_with_nocase", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "interpreter_", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "Interpreter_filter", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "transaction", + "name": "interpreterInstance", "type": { "kind": "SCALAR", "name": "String", @@ -7321,7 +7412,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not", + "name": "interpreterInstance_not", "type": { "kind": "SCALAR", "name": "String", @@ -7331,7 +7422,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_gt", + "name": "interpreterInstance_gt", "type": { "kind": "SCALAR", "name": "String", @@ -7341,7 +7432,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_lt", + "name": "interpreterInstance_lt", "type": { "kind": "SCALAR", "name": "String", @@ -7351,7 +7442,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_gte", + "name": "interpreterInstance_gte", "type": { "kind": "SCALAR", "name": "String", @@ -7361,7 +7452,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_lte", + "name": "interpreterInstance_lte", "type": { "kind": "SCALAR", "name": "String", @@ -7371,7 +7462,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_in", + "name": "interpreterInstance_in", "type": { "kind": "LIST", "name": null, @@ -7389,7 +7480,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_in", + "name": "interpreterInstance_not_in", "type": { "kind": "LIST", "name": null, @@ -7407,7 +7498,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_contains", + "name": "interpreterInstance_contains", "type": { "kind": "SCALAR", "name": "String", @@ -7417,7 +7508,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_contains_nocase", + "name": "interpreterInstance_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -7427,7 +7518,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_contains", + "name": "interpreterInstance_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -7437,7 +7528,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_contains_nocase", + "name": "interpreterInstance_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -7447,7 +7538,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_starts_with", + "name": "interpreterInstance_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -7457,7 +7548,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_starts_with_nocase", + "name": "interpreterInstance_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -7467,7 +7558,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_starts_with", + "name": "interpreterInstance_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -7477,7 +7568,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_starts_with_nocase", + "name": "interpreterInstance_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -7487,7 +7578,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_ends_with", + "name": "interpreterInstance_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -7497,7 +7588,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_ends_with_nocase", + "name": "interpreterInstance_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -7507,7 +7598,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_ends_with", + "name": "interpreterInstance_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -7517,7 +7608,7 @@ { "defaultValue": null, "description": null, - "name": "transaction_not_ends_with_nocase", + "name": "interpreterInstance_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -7527,17 +7618,17 @@ { "defaultValue": null, "description": null, - "name": "transaction_", + "name": "interpreterInstance_", "type": { "kind": "INPUT_OBJECT", - "name": "Transaction_filter", + "name": "InterpreterInstance_filter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "emitter", + "name": "config", "type": { "kind": "SCALAR", "name": "String", @@ -7547,7 +7638,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_not", + "name": "config_not", "type": { "kind": "SCALAR", "name": "String", @@ -7557,7 +7648,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_gt", + "name": "config_gt", "type": { "kind": "SCALAR", "name": "String", @@ -7567,7 +7658,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_lt", + "name": "config_lt", "type": { "kind": "SCALAR", "name": "String", @@ -7577,7 +7668,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_gte", + "name": "config_gte", "type": { "kind": "SCALAR", "name": "String", @@ -7587,7 +7678,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_lte", + "name": "config_lte", "type": { "kind": "SCALAR", "name": "String", @@ -7597,7 +7688,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_in", + "name": "config_in", "type": { "kind": "LIST", "name": null, @@ -7615,7 +7706,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_not_in", + "name": "config_not_in", "type": { "kind": "LIST", "name": null, @@ -7633,7 +7724,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_contains", + "name": "config_contains", "type": { "kind": "SCALAR", "name": "String", @@ -7643,7 +7734,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_contains_nocase", + "name": "config_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -7653,7 +7744,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_not_contains", + "name": "config_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -7663,7 +7754,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_not_contains_nocase", + "name": "config_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -7673,7 +7764,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_starts_with", + "name": "config_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -7683,7 +7774,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_starts_with_nocase", + "name": "config_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -7693,7 +7784,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_not_starts_with", + "name": "config_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -7703,7 +7794,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_not_starts_with_nocase", + "name": "config_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -7713,7 +7804,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_ends_with", + "name": "config_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -7723,7 +7814,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_ends_with_nocase", + "name": "config_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -7733,7 +7824,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_not_ends_with", + "name": "config_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -7743,7 +7834,7 @@ { "defaultValue": null, "description": null, - "name": "emitter_not_ends_with_nocase", + "name": "config_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -7753,109 +7844,13 @@ { "defaultValue": null, "description": null, - "name": "emitter_", + "name": "config_", "type": { "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", + "name": "StateConfig_filter", "ofType": null } }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, { "defaultValue": null, "description": "Filter for the block changed event.", @@ -7875,7 +7870,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "Event_filter", + "name": "Expression_filter", "ofType": null } } @@ -7889,7 +7884,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "Event_filter", + "name": "Expression_filter", "ofType": null } } @@ -7897,7 +7892,7 @@ ], "interfaces": null, "kind": "INPUT_OBJECT", - "name": "Event_filter", + "name": "Expression_filter", "possibleTypes": null }, { @@ -7913,50 +7908,104 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "transaction" + "name": "event" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "transaction__id" + "name": "event__id" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "transaction__timestamp" + "name": "event__timestamp" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "transaction__blockNumber" + "name": "account" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "emitter" + "name": "account__id" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "emitter__id" + "name": "sender" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "timestamp" + "name": "sender__id" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sender__bytecodeHash" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sender__contractMeta" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sender__contractMetaHash" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "interpreter" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "interpreter__id" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "interpreterInstance" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "interpreterInstance__id" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "config" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "config__id" } ], "fields": null, "inputFields": null, "interfaces": null, "kind": "ENUM", - "name": "Event_orderBy", + "name": "Expression_orderBy", "possibleTypes": null }, { @@ -7979,6 +8028,26 @@ "name": "ID", "possibleTypes": null }, + { + "description": "4 bytes signed integer\n", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Int", + "possibleTypes": null + }, + { + "description": "8 bytes signed integer\n", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Int8", + "possibleTypes": null + }, { "description": null, "enumValues": null, @@ -7986,7 +8055,7 @@ { "args": [], "deprecationReason": null, - "description": null, + "description": "Hash of the deployed bytecode for this interpreter.", "isDeprecated": false, "name": "id", "type": { @@ -8000,65 +8069,174 @@ } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ERC20", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "decimals", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vault", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vault", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order", - "type": { - "kind": "NON_NULL", + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "InterpreterInstance_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "InterpreterInstance_filter", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "Instances of this interpreter", + "isDeprecated": false, + "name": "instances", + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Order", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InterpreterInstance", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Expression_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Expression_filter", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "Expressions deployed by this interpreter", + "isDeprecated": false, + "name": "expressions", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Expression", + "ofType": null + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Interpreter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "Address of this interpreter instance", + "isDeprecated": false, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", "ofType": null } } @@ -8068,22 +8246,93 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "tokenVault", + "name": "interpreter", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "TokenVault", + "name": "Interpreter", "ofType": null } } + }, + { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Expression_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Expression_filter", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "Expressions deployed by this interpreter instance", + "isDeprecated": false, + "name": "expressions", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Expression", + "ofType": null + } + } + } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "IO", + "name": "InterpreterInstance", "possibleTypes": null }, { @@ -8190,7 +8439,7 @@ { "defaultValue": null, "description": null, - "name": "token", + "name": "interpreter", "type": { "kind": "SCALAR", "name": "String", @@ -8200,7 +8449,7 @@ { "defaultValue": null, "description": null, - "name": "token_not", + "name": "interpreter_not", "type": { "kind": "SCALAR", "name": "String", @@ -8210,7 +8459,7 @@ { "defaultValue": null, "description": null, - "name": "token_gt", + "name": "interpreter_gt", "type": { "kind": "SCALAR", "name": "String", @@ -8220,7 +8469,7 @@ { "defaultValue": null, "description": null, - "name": "token_lt", + "name": "interpreter_lt", "type": { "kind": "SCALAR", "name": "String", @@ -8230,7 +8479,7 @@ { "defaultValue": null, "description": null, - "name": "token_gte", + "name": "interpreter_gte", "type": { "kind": "SCALAR", "name": "String", @@ -8240,7 +8489,7 @@ { "defaultValue": null, "description": null, - "name": "token_lte", + "name": "interpreter_lte", "type": { "kind": "SCALAR", "name": "String", @@ -8250,7 +8499,7 @@ { "defaultValue": null, "description": null, - "name": "token_in", + "name": "interpreter_in", "type": { "kind": "LIST", "name": null, @@ -8268,7 +8517,7 @@ { "defaultValue": null, "description": null, - "name": "token_not_in", + "name": "interpreter_not_in", "type": { "kind": "LIST", "name": null, @@ -8286,7 +8535,7 @@ { "defaultValue": null, "description": null, - "name": "token_contains", + "name": "interpreter_contains", "type": { "kind": "SCALAR", "name": "String", @@ -8296,7 +8545,7 @@ { "defaultValue": null, "description": null, - "name": "token_contains_nocase", + "name": "interpreter_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -8306,7 +8555,7 @@ { "defaultValue": null, "description": null, - "name": "token_not_contains", + "name": "interpreter_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -8316,7 +8565,7 @@ { "defaultValue": null, "description": null, - "name": "token_not_contains_nocase", + "name": "interpreter_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -8326,7 +8575,7 @@ { "defaultValue": null, "description": null, - "name": "token_starts_with", + "name": "interpreter_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -8336,7 +8585,7 @@ { "defaultValue": null, "description": null, - "name": "token_starts_with_nocase", + "name": "interpreter_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -8346,7 +8595,7 @@ { "defaultValue": null, "description": null, - "name": "token_not_starts_with", + "name": "interpreter_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -8356,7 +8605,7 @@ { "defaultValue": null, "description": null, - "name": "token_not_starts_with_nocase", + "name": "interpreter_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -8366,7 +8615,7 @@ { "defaultValue": null, "description": null, - "name": "token_ends_with", + "name": "interpreter_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -8376,7 +8625,7 @@ { "defaultValue": null, "description": null, - "name": "token_ends_with_nocase", + "name": "interpreter_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -8386,7 +8635,7 @@ { "defaultValue": null, "description": null, - "name": "token_not_ends_with", + "name": "interpreter_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -8396,7 +8645,7 @@ { "defaultValue": null, "description": null, - "name": "token_not_ends_with_nocase", + "name": "interpreter_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -8406,173 +8655,171 @@ { "defaultValue": null, "description": null, - "name": "token_", + "name": "interpreter_", "type": { "kind": "INPUT_OBJECT", - "name": "ERC20_filter", + "name": "Interpreter_filter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "decimals", + "name": "expressions_", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "Expression_filter", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "decimals_not", + "description": "Filter for the block changed event.", + "name": "_change_block", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "decimals_gt", + "name": "and", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InterpreterInstance_filter", + "ofType": null + } } }, { "defaultValue": null, "description": null, - "name": "decimals_lt", + "name": "or", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InterpreterInstance_filter", + "ofType": null + } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "InterpreterInstance_filter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "decimals_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "id" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "decimals_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "interpreter" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "decimals_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "interpreter__id" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "decimals_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, + "isDeprecated": false, + "name": "expressions" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "InterpreterInstance_orderBy", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "vault", + "name": "id", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vault_not", + "name": "id_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vault_gt", + "name": "id_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vault_lt", + "name": "id_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vault_gte", + "name": "id_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vault_lte", + "name": "id_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vault_in", + "name": "id_in", "type": { "kind": "LIST", "name": null, @@ -8581,7 +8828,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -8590,7 +8837,7 @@ { "defaultValue": null, "description": null, - "name": "vault_not_in", + "name": "id_not_in", "type": { "kind": "LIST", "name": null, @@ -8599,7 +8846,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } } @@ -8608,107 +8855,154 @@ { "defaultValue": null, "description": null, - "name": "vault_contains", + "name": "instances_", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "InterpreterInstance_filter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vault_contains_nocase", + "name": "expressions_", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "Expression_filter", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "vault_not_contains", + "description": "Filter for the block changed event.", + "name": "_change_block", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vault_not_contains_nocase", + "name": "and", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Interpreter_filter", + "ofType": null + } } }, { "defaultValue": null, "description": null, - "name": "vault_starts_with", + "name": "or", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Interpreter_filter", + "ofType": null + } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "Interpreter_filter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "vault_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "id" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "vault_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "instances" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "vault_not_starts_with_nocase", + "isDeprecated": false, + "name": "expressions" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "Interpreter_orderBy", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "The hash of the Map Rain Meta document or CBOR Item", + "isDeprecated": false, + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "vault_ends_with", + "args": [], + "deprecationReason": null, + "description": "The payload present on the index 0 of the Rain meta Document", + "isDeprecated": false, + "name": "payload", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "vault_ends_with_nocase", + "args": [], + "deprecationReason": null, + "description": "The magic number that is used to track the payload", + "isDeprecated": false, + "name": "magicNumber", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "vault_not_ends_with", + "args": [], + "deprecationReason": null, + "description": "The header name info for Content-Type", + "isDeprecated": false, + "name": "contentType", "type": { "kind": "SCALAR", "name": "String", @@ -8716,9 +9010,11 @@ } }, { - "defaultValue": null, - "description": null, - "name": "vault_not_ends_with_nocase", + "args": [], + "deprecationReason": null, + "description": "The header name info for Content-Encoding. It's optional", + "isDeprecated": false, + "name": "contentEncoding", "type": { "kind": "SCALAR", "name": "String", @@ -8726,79 +9022,168 @@ } }, { - "defaultValue": null, - "description": null, - "name": "vault_", + "args": [], + "deprecationReason": null, + "description": "The header name info for Content-Language. It's optional", + "isDeprecated": false, + "name": "contentLanguage", "type": { - "kind": "INPUT_OBJECT", - "name": "Vault_filter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "order", - "type": { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "RainMetaV1_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "RainMetaV1_filter", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "RainMeta documents bytes that have this content", + "isDeprecated": false, + "name": "documents", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RainMetaV1", + "ofType": null + } + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MetaContentV1", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_not", + "name": "id_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_gt", + "name": "id_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_lt", + "name": "id_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_gte", + "name": "id_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_lte", + "name": "id_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_in", + "name": "id_in", "type": { "kind": "LIST", "name": null, @@ -8807,7 +9192,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -8816,7 +9201,7 @@ { "defaultValue": null, "description": null, - "name": "order_not_in", + "name": "id_not_in", "type": { "kind": "LIST", "name": null, @@ -8825,7 +9210,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -8834,197 +9219,203 @@ { "defaultValue": null, "description": null, - "name": "order_contains", + "name": "id_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_contains_nocase", + "name": "id_not_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_not_contains", + "name": "payload", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_not_contains_nocase", + "name": "payload_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_starts_with", + "name": "payload_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_starts_with_nocase", + "name": "payload_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_not_starts_with", + "name": "payload_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_not_starts_with_nocase", + "name": "payload_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_ends_with", + "name": "payload_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "order_ends_with_nocase", + "name": "payload_not_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "order_not_ends_with", + "name": "payload_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "order_not_ends_with_nocase", + "name": "payload_not_contains", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Order_filter", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tokenVault", + "name": "magicNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tokenVault_not", + "name": "magicNumber_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tokenVault_gt", + "name": "magicNumber_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tokenVault_lt", + "name": "magicNumber_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tokenVault_gte", + "name": "magicNumber_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tokenVault_lte", + "name": "magicNumber_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tokenVault_in", + "name": "magicNumber_in", "type": { "kind": "LIST", "name": null, @@ -9033,7 +9424,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } } @@ -9042,7 +9433,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_not_in", + "name": "magicNumber_not_in", "type": { "kind": "LIST", "name": null, @@ -9051,7 +9442,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } } @@ -9060,7 +9451,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_contains", + "name": "contentType", "type": { "kind": "SCALAR", "name": "String", @@ -9070,7 +9461,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_contains_nocase", + "name": "contentType_not", "type": { "kind": "SCALAR", "name": "String", @@ -9080,7 +9471,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_not_contains", + "name": "contentType_gt", "type": { "kind": "SCALAR", "name": "String", @@ -9090,7 +9481,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_not_contains_nocase", + "name": "contentType_lt", "type": { "kind": "SCALAR", "name": "String", @@ -9100,7 +9491,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_starts_with", + "name": "contentType_gte", "type": { "kind": "SCALAR", "name": "String", @@ -9110,7 +9501,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_starts_with_nocase", + "name": "contentType_lte", "type": { "kind": "SCALAR", "name": "String", @@ -9120,17 +9511,43 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_not_starts_with", + "name": "contentType_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "contentType_not_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "tokenVault_not_starts_with_nocase", + "name": "contentType_contains", "type": { "kind": "SCALAR", "name": "String", @@ -9140,7 +9557,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_ends_with", + "name": "contentType_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -9150,7 +9567,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_ends_with_nocase", + "name": "contentType_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -9160,7 +9577,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_not_ends_with", + "name": "contentType_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -9170,7 +9587,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_not_ends_with_nocase", + "name": "contentType_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -9180,467 +9597,353 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_", + "name": "contentType_starts_with_nocase", "type": { - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", + "description": null, + "name": "contentType_not_starts_with", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "and", + "name": "contentType_not_starts_with_nocase", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "IO_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "or", + "name": "contentType_ends_with", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "IO_filter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "IO_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "token" + "name": "contentType_ends_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "token__id" + "name": "contentType_not_ends_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "token__name" + "name": "contentType_not_ends_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "token__symbol" + "name": "contentEncoding", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "token__totalSupply" + "name": "contentEncoding_not", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "token__totalSupplyDisplay" + "name": "contentEncoding_gt", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "token__decimals" + "name": "contentEncoding_lt", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "decimals" + "name": "contentEncoding_gte", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "vault" + "name": "contentEncoding_lte", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "vault__id" + "name": "contentEncoding_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "order" + "name": "contentEncoding_not_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "order__id" + "name": "contentEncoding_contains", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "order__interpreter" + "name": "contentEncoding_contains_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "order__interpreterStore" + "name": "contentEncoding_not_contains", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "order__expressionDeployer" + "name": "contentEncoding_not_contains_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "order__expression" + "name": "contentEncoding_starts_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "order__orderActive" + "name": "contentEncoding_starts_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "order__handleIO" + "name": "contentEncoding_not_starts_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "order__orderJSONString" + "name": "contentEncoding_not_starts_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "order__timestamp" + "name": "contentEncoding_ends_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "tokenVault" + "name": "contentEncoding_ends_with_nocase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "tokenVault__id" + "name": "contentEncoding_not_ends_with", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVault__balance" - }, - { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "tokenVault__balanceDisplay" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "IO_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Int", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "The hash of the Map Rain Meta document or CBOR Item", - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The payload present on the index 0 of the Rain meta Document", - "isDeprecated": false, - "name": "payload", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The magic number that is used to track the payload", - "isDeprecated": false, - "name": "magicNumber", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The header name info for Content-Type", - "isDeprecated": false, - "name": "contentType", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The header name info for Content-Encoding. It's optional", - "isDeprecated": false, - "name": "contentEncoding", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The header name info for Content-Language. It's optional", - "isDeprecated": false, - "name": "contentLanguage", + "name": "contentEncoding_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", "ofType": null } }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "RainMetaV1_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "RainMetaV1_filter", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "RainMeta documents bytes that have this content", - "isDeprecated": false, - "name": "documents", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RainMetaV1", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "MetaContentV1", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ { "defaultValue": null, "description": null, - "name": "id", + "name": "contentLanguage", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not", + "name": "contentLanguage_not", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "contentLanguage_gt", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "contentLanguage_lt", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "contentLanguage_gte", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "contentLanguage_lte", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_in", + "name": "contentLanguage_in", "type": { "kind": "LIST", "name": null, @@ -9649,7 +9952,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } } @@ -9658,7 +9961,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "contentLanguage_not_in", "type": { "kind": "LIST", "name": null, @@ -9667,7 +9970,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } } @@ -9676,203 +9979,127 @@ { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "contentLanguage_contains", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "contentLanguage_contains_nocase", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "payload", + "name": "contentLanguage_not_contains", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "payload_not", + "name": "contentLanguage_not_contains_nocase", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "payload_gt", + "name": "contentLanguage_starts_with", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "payload_lt", + "name": "contentLanguage_starts_with_nocase", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "payload_gte", + "name": "contentLanguage_not_starts_with", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "payload_lte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "payload_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "payload_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "payload_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "payload_not_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "magicNumber", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "magicNumber_not", + "name": "contentLanguage_not_starts_with_nocase", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "magicNumber_gt", + "name": "contentLanguage_ends_with", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "magicNumber_lt", + "name": "contentLanguage_ends_with_nocase", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "magicNumber_gte", + "name": "contentLanguage_not_ends_with", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "magicNumber_lte", + "name": "contentLanguage_not_ends_with_nocase", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "magicNumber_in", + "name": "documents", "type": { "kind": "LIST", "name": null, @@ -9881,7 +10108,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -9890,7 +10117,7 @@ { "defaultValue": null, "description": null, - "name": "magicNumber_not_in", + "name": "documents_not", "type": { "kind": "LIST", "name": null, @@ -9899,7 +10126,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "String", "ofType": null } } @@ -9908,67 +10135,43 @@ { "defaultValue": null, "description": null, - "name": "contentType", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentType_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentType_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentType_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentType_gte", + "name": "documents_contains", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "contentType_lte", + "name": "documents_contains_nocase", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "contentType_in", + "name": "documents_not_contains", "type": { "kind": "LIST", "name": null, @@ -9986,7 +10189,7 @@ { "defaultValue": null, "description": null, - "name": "contentType_not_in", + "name": "documents_not_contains_nocase", "type": { "kind": "LIST", "name": null, @@ -10004,913 +10207,937 @@ { "defaultValue": null, "description": null, - "name": "contentType_contains", + "name": "documents_", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "RainMetaV1_filter", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "contentType_contains_nocase", + "description": "Filter for the block changed event.", + "name": "_change_block", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "contentType_not_contains", + "name": "and", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MetaContentV1_filter", + "ofType": null + } } }, { "defaultValue": null, "description": null, - "name": "contentType_not_contains_nocase", + "name": "or", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MetaContentV1_filter", + "ofType": null + } } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MetaContentV1_filter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "contentType_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "payload" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "contentType_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "magicNumber" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "contentType_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentType_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentType_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentType_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentType_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentType_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "contentType" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "contentEncoding", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "contentEncoding" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "contentEncoding_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "contentLanguage" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "contentEncoding_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "isDeprecated": false, + "name": "documents" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "MetaContentV1_orderBy", + "possibleTypes": null + }, + { + "description": "Defines the order direction, either ascending or descending", + "enumValues": [ { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "contentEncoding_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "asc" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "contentEncoding_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "isDeprecated": false, + "name": "desc" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "OrderDirection", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "contentEncoding_lte", + "isDeprecated": false, + "name": "account", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Account", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "contentEncoding_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentEncoding_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentEncoding_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentEncoding_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentEncoding_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentEncoding_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentEncoding_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentEncoding_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Account_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Account_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "contentEncoding_not_starts_with", + "isDeprecated": false, + "name": "accounts", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + } + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "contentEncoding_not_starts_with_nocase", + "isDeprecated": false, + "name": "contract", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Contract", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Contract_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Contract_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "contentEncoding_ends_with", + "isDeprecated": false, + "name": "contracts", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Contract", + "ofType": null + } + } + } } }, { - "defaultValue": null, - "description": null, - "name": "contentEncoding_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentEncoding_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentEncoding_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "contentLanguage_lte", + "isDeprecated": false, + "name": "expressionDeployer", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ExpressionDeployer", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "contentLanguage_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "ExpressionDeployer_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExpressionDeployer_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } } - } - }, - { - "defaultValue": null, + ], + "deprecationReason": null, "description": null, - "name": "contentLanguage_not_in", + "isDeprecated": false, + "name": "expressionDeployers", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExpressionDeployer", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "contentLanguage_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contentLanguage_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "contentLanguage_not_ends_with_nocase", + "isDeprecated": false, + "name": "interpreter", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Interpreter", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "documents", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "documents_not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "documents_contains", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Interpreter_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Interpreter_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } } - } - }, - { - "defaultValue": null, + ], + "deprecationReason": null, "description": null, - "name": "documents_contains_nocase", + "isDeprecated": false, + "name": "interpreters", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Interpreter", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "documents_not_contains", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "documents_not_contains_nocase", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } } - } - }, - { - "defaultValue": null, + ], + "deprecationReason": null, "description": null, - "name": "documents_", - "type": { - "kind": "INPUT_OBJECT", - "name": "RainMetaV1_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", + "isDeprecated": false, + "name": "interpreterInstance", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", + "kind": "OBJECT", + "name": "InterpreterInstance", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MetaContentV1_filter", - "ofType": null + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "InterpreterInstance_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "InterpreterInstance_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } } - } - }, - { - "defaultValue": null, + ], + "deprecationReason": null, "description": null, - "name": "or", + "isDeprecated": false, + "name": "interpreterInstances", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "MetaContentV1_filter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InterpreterInstance", + "ofType": null + } + } } } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "MetaContentV1_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "payload" }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "magicNumber" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "contentType" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "contentEncoding" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "contentLanguage" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "documents" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "MetaContentV1_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "The hash of the order", - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The address that added the order", - "isDeprecated": false, - "name": "owner", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The IInterpreter address that is used to add the order", - "isDeprecated": false, - "name": "interpreter", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The IInterpreterStore address that is used to add the order", - "isDeprecated": false, - "name": "interpreterStore", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The IExpressionDeployer contract address that is used to add the order", - "isDeprecated": false, - "name": "expressionDeployer", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The address to the rain expression for the Order", - "isDeprecated": false, - "name": "expression", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Whether the order is active or inactive", - "isDeprecated": false, - "name": "orderActive", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Flag that check if there is a handle_IO entrypoint to run. If false the order book MAY skip calling the interpreter to save gas", - "isDeprecated": false, - "name": "handleIO", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "meta", - "type": { - "kind": "OBJECT", - "name": "RainMetaV1", - "ofType": null - } + "name": "rainterpreterStore", + "type": { + "kind": "OBJECT", + "name": "RainterpreterStore", + "ofType": null + } }, { "args": [ @@ -10940,7 +11167,7 @@ "name": "orderBy", "type": { "kind": "ENUM", - "name": "IO_orderBy", + "name": "RainterpreterStore_orderBy", "ofType": null } }, @@ -10960,27 +11187,106 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "IO_filter", + "name": "RainterpreterStore_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } } ], "deprecationReason": null, - "description": "validInputs", + "description": null, "isDeprecated": false, - "name": "validInputs", + "name": "rainterpreterStores", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "IO", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RainterpreterStore", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "rainterpreterStoreInstance", + "type": { + "kind": "OBJECT", + "name": "RainterpreterStoreInstance", + "ofType": null } }, { @@ -11011,7 +11317,7 @@ "name": "orderBy", "type": { "kind": "ENUM", - "name": "IO_orderBy", + "name": "RainterpreterStoreInstance_orderBy", "ofType": null } }, @@ -11031,20734 +11337,1153 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "IO_filter", + "name": "RainterpreterStoreInstance_filter", "ofType": null } - } - ], - "deprecationReason": null, - "description": "validOutputs", - "isDeprecated": false, - "name": "validOutputs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "IO", + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } } - } - }, - { - "args": [], + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "orderJSONString", + "name": "rainterpreterStoreInstances", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RainterpreterStoreInstance", + "ofType": null + } + } } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], "deprecationReason": null, - "description": "Timestamp when the order was added", + "description": null, "isDeprecated": false, - "name": "transaction", + "name": "expression", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } + "kind": "OBJECT", + "name": "Expression", + "ofType": null } }, { - "args": [], + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Expression_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Expression_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "emitter", + "name": "expressions", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Expression", + "ofType": null + } + } } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "timestamp", + "name": "deployExpressionEvent", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } + "kind": "OBJECT", + "name": "DeployExpressionEvent", + "ofType": null } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Event", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "Order", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { - "args": [], - "deprecationReason": null, - "description": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "DeployExpressionEvent_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "DeployExpressionEvent_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, "isDeprecated": false, - "name": "id", + "name": "deployExpressionEvents", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeployExpressionEvent", + "ofType": null + } + } } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "deployer", + "name": "transaction", "type": { - "kind": "SCALAR", - "name": "Bytes", + "kind": "OBJECT", + "name": "Transaction", "ofType": null } }, { - "args": [], + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Transaction_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Transaction_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "address", + "name": "transactions", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } + } } } }, { - "args": [], - "deprecationReason": null, - "description": "The RainMetaV1 decode information", - "isDeprecated": false, - "name": "meta", - "type": { - "kind": "OBJECT", - "name": "RainMetaV1", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "OrderBook", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "deployer", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "deployer_not", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "deployer_gt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "deployer_lt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "deployer_gte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "deployer_lte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "deployer_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "deployer_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "deployer_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "deployer_not_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "address", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "address_not", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "address_gt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "address_lt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "address_gte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "address_lte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "address_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "address_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "address_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "address_not_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_", - "type": { - "kind": "INPUT_OBJECT", - "name": "RainMetaV1_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrderBook_filter", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrderBook_filter", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "OrderBook_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deployer" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "address" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "meta" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "meta__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "meta__metaBytes" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "OrderBook_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The sender address who cleared the Orders", - "isDeprecated": false, - "name": "sender", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The clearer address who cleared this order", - "isDeprecated": false, - "name": "clearer", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Order A being cleared", - "isDeprecated": false, - "name": "orderA", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Order", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Order B being cleared", - "isDeprecated": false, - "name": "orderB", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Order", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Account_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "The owners of the Orders that were cleared [Order A, Order B]", - "isDeprecated": false, - "name": "owners", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The token input index cleared into Order A", - "isDeprecated": false, - "name": "aInputIOIndex", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The token output index cleared into Order A", - "isDeprecated": false, - "name": "aOutputIOIndex", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The token input index cleared into Order B", - "isDeprecated": false, - "name": "bInputIOIndex", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The token output index cleared into Order B", - "isDeprecated": false, - "name": "bOutputIOIndex", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The bounty paid when this order was cleared", - "isDeprecated": false, - "name": "bounty", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Bounty", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The state change that occurred because of this Clear", - "isDeprecated": false, - "name": "stateChange", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderClearStateChange", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "emitter", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Event", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "OrderClear", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClear", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderClear", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aOutput", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bOutput", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aInput", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bInput", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "OrderClearStateChange", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClear_", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrderClear_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutput", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutput_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutput_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutput_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutput_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutput_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutput_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutput_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutput", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutput_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutput_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutput_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutput_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutput_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutput_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutput_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInput", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInput_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInput_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInput_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInput_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInput_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInput_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInput_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInput", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInput_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInput_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInput_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInput_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInput_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInput_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInput_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrderClearStateChange_filter", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrderClearStateChange_filter", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "OrderClearStateChange_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClear" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClear__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClear__aInputIOIndex" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClear__aOutputIOIndex" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClear__bInputIOIndex" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClear__bOutputIOIndex" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClear__timestamp" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aOutput" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bOutput" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aInput" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bInput" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "OrderClearStateChange_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "clearer_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderA_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Order_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderB_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Order_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owners", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "owners_not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "owners_contains", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "owners_contains_nocase", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "owners_not_contains", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "owners_not_contains_nocase", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "owners_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInputIOIndex", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInputIOIndex_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInputIOIndex_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInputIOIndex_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInputIOIndex_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInputIOIndex_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInputIOIndex_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aInputIOIndex_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutputIOIndex", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutputIOIndex_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutputIOIndex_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutputIOIndex_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutputIOIndex_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutputIOIndex_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutputIOIndex_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aOutputIOIndex_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInputIOIndex", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInputIOIndex_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInputIOIndex_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInputIOIndex_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInputIOIndex_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInputIOIndex_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInputIOIndex_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bInputIOIndex_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutputIOIndex", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutputIOIndex_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutputIOIndex_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutputIOIndex_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutputIOIndex_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutputIOIndex_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutputIOIndex_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bOutputIOIndex_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bounty_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Bounty_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stateChange_", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrderClearStateChange_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrderClear_filter", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrderClear_filter", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "OrderClear_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sender" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sender__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "clearer" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "clearer__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderA__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderA__interpreter" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderA__interpreterStore" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderA__expressionDeployer" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderA__expression" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderA__orderActive" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderA__handleIO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderA__orderJSONString" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderA__timestamp" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderB__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderB__interpreter" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderB__interpreterStore" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderB__expressionDeployer" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderB__expression" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderB__orderActive" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderB__handleIO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderB__orderJSONString" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderB__timestamp" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "owners" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aInputIOIndex" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aOutputIOIndex" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bInputIOIndex" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bOutputIOIndex" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bounty" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bounty__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bounty__bountyAmountA" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bounty__bountyAmountADisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bounty__bountyAmountB" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bounty__bountyAmountBDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bounty__timestamp" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stateChange" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stateChange__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stateChange__aOutput" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stateChange__bOutput" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stateChange__aInput" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "stateChange__bInput" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__timestamp" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__blockNumber" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "emitter" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "emitter__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "OrderClear_orderBy", - "possibleTypes": null - }, - { - "description": "Defines the order direction, either ascending or descending", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "asc" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "desc" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "OrderDirection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreter", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreter_not", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreter_gt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreter_lt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreter_gte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreter_lte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreter_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreter_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreter_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreter_not_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreterStore", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreterStore_not", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreterStore_gt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreterStore_lt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreterStore_gte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreterStore_lte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreterStore_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreterStore_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreterStore_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "interpreterStore_not_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expressionDeployer", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expressionDeployer_not", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expressionDeployer_gt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expressionDeployer_lt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expressionDeployer_gte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expressionDeployer_lte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expressionDeployer_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "expressionDeployer_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "expressionDeployer_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expressionDeployer_not_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expression", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expression_not", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expression_gt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expression_lt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expression_gte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expression_lte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expression_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "expression_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "expression_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expression_not_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderActive", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderActive_not", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderActive_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderActive_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "handleIO", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "handleIO_not", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "handleIO_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "handleIO_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "meta_", - "type": { - "kind": "INPUT_OBJECT", - "name": "RainMetaV1_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "validInputs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "validInputs_not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "validInputs_contains", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "validInputs_contains_nocase", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "validInputs_not_contains", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "validInputs_not_contains_nocase", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "validInputs_", - "type": { - "kind": "INPUT_OBJECT", - "name": "IO_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "validOutputs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "validOutputs_not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "validOutputs_contains", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "validOutputs_contains_nocase", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "validOutputs_not_contains", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "validOutputs_not_contains_nocase", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "validOutputs_", - "type": { - "kind": "INPUT_OBJECT", - "name": "IO_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderJSONString_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Order_filter", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Order_filter", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "Order_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "owner" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "owner__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "interpreter" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "interpreterStore" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "expressionDeployer" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "expression" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderActive" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "handleIO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "meta" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "meta__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "meta__metaBytes" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "validInputs" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "validOutputs" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderJSONString" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__timestamp" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__blockNumber" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "emitter" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "emitter__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "Order_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderBook", - "type": { - "kind": "OBJECT", - "name": "OrderBook", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "OrderBook_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrderBook_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderBooks", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderBook", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "rainMetaV1", - "type": { - "kind": "OBJECT", - "name": "RainMetaV1", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "RainMetaV1_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "RainMetaV1_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "rainMetaV1S", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RainMetaV1", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "metaContentV1", - "type": { - "kind": "OBJECT", - "name": "MetaContentV1", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "MetaContentV1_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "MetaContentV1_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "metaContentV1S", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MetaContentV1", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order", - "type": { - "kind": "OBJECT", - "name": "Order", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Order_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Order_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orders", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Order", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "io", - "type": { - "kind": "OBJECT", - "name": "IO", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "IO_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "IO_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ios", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "IO", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vault", - "type": { - "kind": "OBJECT", - "name": "Vault", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Vault_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Vault_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaults", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vault", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVault", - "type": { - "kind": "OBJECT", - "name": "TokenVault", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "TokenVault_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVaults", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenVault", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaultDeposit", - "type": { - "kind": "OBJECT", - "name": "VaultDeposit", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "VaultDeposit_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "VaultDeposit_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaultDeposits", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "VaultDeposit", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaultWithdraw", - "type": { - "kind": "OBJECT", - "name": "VaultWithdraw", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "VaultWithdraw_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "VaultWithdraw_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaultWithdraws", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "VaultWithdraw", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "erc20", - "type": { - "kind": "OBJECT", - "name": "ERC20", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "ERC20_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "ERC20_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "erc20S", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ERC20", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClear", - "type": { - "kind": "OBJECT", - "name": "OrderClear", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "OrderClear_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrderClear_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClears", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderClear", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bounty", - "type": { - "kind": "OBJECT", - "name": "Bounty", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Bounty_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Bounty_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bounties", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Bounty", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "takeOrderEntity", - "type": { - "kind": "OBJECT", - "name": "TakeOrderEntity", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "TakeOrderEntity_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "TakeOrderEntity_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "takeOrderEntities", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TakeOrderEntity", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClearStateChange", - "type": { - "kind": "OBJECT", - "name": "OrderClearStateChange", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "OrderClearStateChange_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrderClearStateChange_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClearStateChanges", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderClearStateChange", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "clearOrderConfig", - "type": { - "kind": "OBJECT", - "name": "ClearOrderConfig", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "ClearOrderConfig_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "ClearOrderConfig_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "clearOrderConfigs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClearOrderConfig", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "account", - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Account_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "accounts", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction", - "type": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Transaction_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transactions", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "event", - "type": { - "kind": "INTERFACE", - "name": "Event", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Event_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Event_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "events", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Event", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Access to subgraph metadata", - "isDeprecated": false, - "name": "_meta", - "type": { - "kind": "OBJECT", - "name": "_Meta_", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Query", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "Hash of the meta directly emitted by the contract", - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Original meta bytes directly emitted from the contract", - "isDeprecated": false, - "name": "metaBytes", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "MetaContentV1_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "MetaContentV1_filter", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "The meta content V1 decoded from the meta bytes emitted", - "isDeprecated": false, - "name": "content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MetaContentV1", - "ofType": null - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "RainMetaV1", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "metaBytes", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "metaBytes_not", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "metaBytes_gt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "metaBytes_lt", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "metaBytes_gte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "metaBytes_lte", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "metaBytes_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "metaBytes_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "metaBytes_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "metaBytes_not_contains", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "content_", - "type": { - "kind": "INPUT_OBJECT", - "name": "MetaContentV1_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RainMetaV1_filter", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RainMetaV1_filter", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "RainMetaV1_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "metaBytes" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "content" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "RainMetaV1_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "String", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderBook", - "type": { - "kind": "OBJECT", - "name": "OrderBook", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "OrderBook_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrderBook_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderBooks", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderBook", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "rainMetaV1", - "type": { - "kind": "OBJECT", - "name": "RainMetaV1", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "RainMetaV1_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "RainMetaV1_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "rainMetaV1S", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RainMetaV1", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "metaContentV1", - "type": { - "kind": "OBJECT", - "name": "MetaContentV1", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "MetaContentV1_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "MetaContentV1_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "metaContentV1S", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MetaContentV1", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order", - "type": { - "kind": "OBJECT", - "name": "Order", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Order_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Order_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orders", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Order", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "io", - "type": { - "kind": "OBJECT", - "name": "IO", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "IO_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "IO_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ios", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "IO", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vault", - "type": { - "kind": "OBJECT", - "name": "Vault", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Vault_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Vault_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaults", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vault", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVault", - "type": { - "kind": "OBJECT", - "name": "TokenVault", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "TokenVault_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVaults", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenVault", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaultDeposit", - "type": { - "kind": "OBJECT", - "name": "VaultDeposit", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "VaultDeposit_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "VaultDeposit_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaultDeposits", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "VaultDeposit", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaultWithdraw", - "type": { - "kind": "OBJECT", - "name": "VaultWithdraw", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "VaultWithdraw_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "VaultWithdraw_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaultWithdraws", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "VaultWithdraw", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "erc20", - "type": { - "kind": "OBJECT", - "name": "ERC20", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "ERC20_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "ERC20_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "erc20S", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ERC20", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClear", - "type": { - "kind": "OBJECT", - "name": "OrderClear", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "OrderClear_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrderClear_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClears", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderClear", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bounty", - "type": { - "kind": "OBJECT", - "name": "Bounty", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Bounty_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Bounty_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bounties", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Bounty", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "takeOrderEntity", - "type": { - "kind": "OBJECT", - "name": "TakeOrderEntity", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "TakeOrderEntity_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "TakeOrderEntity_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "takeOrderEntities", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TakeOrderEntity", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClearStateChange", - "type": { - "kind": "OBJECT", - "name": "OrderClearStateChange", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "OrderClearStateChange_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrderClearStateChange_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClearStateChanges", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderClearStateChange", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "clearOrderConfig", - "type": { - "kind": "OBJECT", - "name": "ClearOrderConfig", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "ClearOrderConfig_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "ClearOrderConfig_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "clearOrderConfigs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ClearOrderConfig", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "account", - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Account_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "accounts", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction", - "type": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Transaction_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transactions", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "event", - "type": { - "kind": "INTERFACE", - "name": "Event", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Event_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Event_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - }, - { - "defaultValue": "deny", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "name": "subgraphError", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "events", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Event", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Access to subgraph metadata", - "isDeprecated": false, - "name": "_meta", - "type": { - "kind": "OBJECT", - "name": "_Meta_", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Subscription", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sender", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Order", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The input amount from the perspective of sender", - "isDeprecated": false, - "name": "input", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputDisplay", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The output amount from the perspective of sender", - "isDeprecated": false, - "name": "output", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "outputDisplay", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Input Ratio", - "isDeprecated": false, - "name": "inputRatio", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Output Ratio", - "isDeprecated": false, - "name": "outputRatio", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The index of the input token in order to match with the take order output.", - "isDeprecated": false, - "name": "inputIOIndex", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The index of the output token in `order` to match with the take order input.", - "isDeprecated": false, - "name": "outputIOIndex", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputToken", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ERC20", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "outputToken", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ERC20", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "emitter", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Event", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "TakeOrderEntity", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Order_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "input", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "input_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "input_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "input_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "input_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "input_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "input_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "input_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputDisplay", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputDisplay_not", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputDisplay_gt", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputDisplay_lt", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputDisplay_gte", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputDisplay_lte", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputDisplay_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputDisplay_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "output", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "output_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "output_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "output_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "output_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "output_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "output_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "output_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputDisplay", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputDisplay_not", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputDisplay_gt", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputDisplay_lt", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputDisplay_gte", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputDisplay_lte", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputDisplay_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputDisplay_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputRatio_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputRatio_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputIOIndex", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputIOIndex_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputIOIndex_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputIOIndex_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputIOIndex_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputIOIndex_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputIOIndex_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputIOIndex_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputIOIndex", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputIOIndex_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputIOIndex_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputIOIndex_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputIOIndex_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputIOIndex_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputIOIndex_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputIOIndex_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "inputToken_", - "type": { - "kind": "INPUT_OBJECT", - "name": "ERC20_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "outputToken_", - "type": { - "kind": "INPUT_OBJECT", - "name": "ERC20_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TakeOrderEntity_filter", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TakeOrderEntity_filter", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "TakeOrderEntity_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sender" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sender__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order__interpreter" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order__interpreterStore" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order__expressionDeployer" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order__expression" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order__orderActive" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order__handleIO" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order__orderJSONString" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "order__timestamp" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "input" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "output" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "outputDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputRatio" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "outputRatio" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputIOIndex" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "outputIOIndex" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputToken" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputToken__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputToken__name" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputToken__symbol" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputToken__totalSupply" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputToken__totalSupplyDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputToken__decimals" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "outputToken" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "outputToken__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "outputToken__name" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "outputToken__symbol" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "outputToken__totalSupply" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "outputToken__totalSupplyDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "outputToken__decimals" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__timestamp" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__blockNumber" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "emitter" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "emitter__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "TakeOrderEntity_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The owner of this Vault", - "isDeprecated": false, - "name": "owner", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The id of this vault", - "isDeprecated": false, - "name": "vault", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vault", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The token that has a balance for this vault and owner.", - "isDeprecated": false, - "name": "token", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ERC20", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The balance of this token, for this vault, for this owner", - "isDeprecated": false, - "name": "balance", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "balanceDisplay", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Order_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Order_filter", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Orders that reference this vault, owner and token", - "isDeprecated": false, - "name": "orders", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Order", - "ofType": null - } - } - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "OrderClear_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrderClear_filter", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClears", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderClear", - "ofType": null - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "TokenVault", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Vault_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_", - "type": { - "kind": "INPUT_OBJECT", - "name": "ERC20_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balance", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balance_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balance_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balance_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balance_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balance_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balance_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "balance_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "balanceDisplay", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balanceDisplay_not", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balanceDisplay_gt", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balanceDisplay_lt", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balanceDisplay_gte", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balanceDisplay_lte", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "balanceDisplay_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "balanceDisplay_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orders", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orders_not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orders_contains", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orders_contains_nocase", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orders_not_contains", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orders_not_contains_nocase", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orders_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Order_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClears", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClears_not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClears_contains", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClears_contains_nocase", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClears_not_contains", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClears_not_contains_nocase", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderClears_", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrderClear_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "owner" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "owner__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vault" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vault__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__name" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__symbol" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__totalSupply" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__totalSupplyDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__decimals" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "balance" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "balanceDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orders" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "orderClears" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "TokenVault_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "blockNumber", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "Event_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "Event_filter", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "events", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Event", - "ofType": null - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Transaction", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "events_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Event_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "blockNumber" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "events" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "Transaction_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The owner of this Vault", - "isDeprecated": false, - "name": "owner", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "TokenVault_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Tokens in this Vault", - "isDeprecated": false, - "name": "tokenVaults", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenVault", - "ofType": null - } - } - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "VaultDeposit_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "VaultDeposit_filter", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Deposits into this Vault", - "isDeprecated": false, - "name": "deposits", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "VaultDeposit", - "ofType": null - } - } - } - }, - { - "args": [ - { - "defaultValue": "0", - "description": null, - "name": "skip", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": "100", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "ENUM", - "name": "VaultWithdraw_orderBy", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderDirection", - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "VaultWithdraw_filter", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Withdrawals from this Vault", - "isDeprecated": false, - "name": "withdraws", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "VaultWithdraw", - "ofType": null - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Vault", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The transaction sender of this deposit", - "isDeprecated": false, - "name": "sender", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The token that was deposited", - "isDeprecated": false, - "name": "token", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ERC20", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The vaultId that was deposited into", - "isDeprecated": false, - "name": "vaultId", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The Vault that was deposited into", - "isDeprecated": false, - "name": "vault", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vault", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The amount that was deposited", - "isDeprecated": false, - "name": "amount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "amountDisplay", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "The current balance of this token for this Vault", - "isDeprecated": false, - "name": "tokenVault", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenVault", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "emitter", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "timestamp", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Event", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "VaultDeposit", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_", - "type": { - "kind": "INPUT_OBJECT", - "name": "ERC20_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vaultId", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vaultId_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vaultId_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vaultId_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vaultId_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vaultId_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vaultId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vaultId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vault_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Vault_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_not", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_gt", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_lt", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_gte", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_lte", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_", - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null } - } - } - }, - { - "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VaultDeposit_filter", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VaultDeposit_filter", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "VaultDeposit_filter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sender" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sender__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__name" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__symbol" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__totalSupply" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__totalSupplyDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__decimals" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaultId" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vault" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vault__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "amount" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "amountDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVault" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVault__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVault__balance" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVault__balanceDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__timestamp" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__blockNumber" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "emitter" - }, - { + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "emitter__id" + "name": "stateConfig", + "type": { + "kind": "OBJECT", + "name": "StateConfig", + "ofType": null + } }, { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "StateConfig_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "StateConfig_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "timestamp" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "VaultDeposit_orderBy", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", + "name": "stateConfigs", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StateConfig", + "ofType": null + } + } } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], "deprecationReason": null, - "description": "The transaction sender of this withdrawal", + "description": null, "isDeprecated": false, - "name": "sender", + "name": "rainMetaV1", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } + "kind": "OBJECT", + "name": "RainMetaV1", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "The token that was withdrawn", - "isDeprecated": false, - "name": "token", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ERC20", - "ofType": null + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "RainMetaV1_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "RainMetaV1_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } } - } - }, - { - "args": [], + ], "deprecationReason": null, - "description": "The vaultId that was withdrawn from", + "description": null, "isDeprecated": false, - "name": "vaultId", + "name": "rainMetaV1S", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RainMetaV1", + "ofType": null + } + } } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], "deprecationReason": null, - "description": "The Vault that was withdrawn from", + "description": null, "isDeprecated": false, - "name": "vault", + "name": "metaContentV1", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vault", - "ofType": null - } + "kind": "OBJECT", + "name": "MetaContentV1", + "ofType": null } }, { - "args": [], + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "MetaContentV1_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "MetaContentV1_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], "deprecationReason": null, - "description": "The amount that was requested be withdrawn", + "description": null, "isDeprecated": false, - "name": "requestedAmount", + "name": "metaContentV1S", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetaContentV1", + "ofType": null + } + } } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "requestedAmountDisplay", + "name": "event", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } + "kind": "INTERFACE", + "name": "Event", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "The amount that was withdrawn", - "isDeprecated": false, - "name": "amount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Event_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Event_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } } - } - }, - { - "args": [], + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "amountDisplay", + "name": "events", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Event", + "ofType": null + } + } } } }, { - "args": [], - "deprecationReason": null, - "description": "The current balance of this token for this Vault", - "isDeprecated": false, - "name": "tokenVault", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenVault", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } } - } - }, - { - "args": [], + ], "deprecationReason": null, - "description": null, + "description": "Access to subgraph metadata", "isDeprecated": false, - "name": "transaction", + "name": "_meta", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } + "kind": "OBJECT", + "name": "_Meta_", + "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Query", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ { "args": [], "deprecationReason": null, - "description": null, + "description": "Hash of the meta directly emitted by the contract", "isDeprecated": false, - "name": "emitter", + "name": "id", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Account", + "kind": "SCALAR", + "name": "Bytes", "ofType": null } } @@ -31766,119 +12491,76 @@ { "args": [], "deprecationReason": null, - "description": null, + "description": "Original meta bytes directly emitted from the contract", "isDeprecated": false, - "name": "timestamp", + "name": "metaBytes", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Bytes", "ofType": null } } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Event", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "VaultWithdraw", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } }, { - "defaultValue": null, - "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "MetaContentV1_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "MetaContentV1_filter", "ofType": null } } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_in", + ], + "deprecationReason": null, + "description": "The meta content V1 decoded from the meta bytes emitted", + "isDeprecated": false, + "name": "content", "type": { "kind": "LIST", "name": null, @@ -31886,77 +12568,89 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "MetaContentV1", "ofType": null } } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "RainMetaV1", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "sender", + "name": "id", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "sender_not", + "name": "id_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "sender_gt", + "name": "id_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "sender_lt", + "name": "id_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "sender_gte", + "name": "id_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "sender_lte", + "name": "id_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "sender_in", + "name": "id_in", "type": { "kind": "LIST", "name": null, @@ -31965,7 +12659,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -31974,7 +12668,7 @@ { "defaultValue": null, "description": null, - "name": "sender_not_in", + "name": "id_not_in", "type": { "kind": "LIST", "name": null, @@ -31983,7 +12677,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -31992,197 +12686,87 @@ { "defaultValue": null, "description": null, - "name": "sender_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_not_ends_with", + "name": "id_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "sender_not_ends_with_nocase", + "name": "id_not_contains", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sender_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "token", + "name": "metaBytes", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "token_not", + "name": "metaBytes_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "token_gt", + "name": "metaBytes_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "token_lt", + "name": "metaBytes_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "token_gte", + "name": "metaBytes_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "token_lte", + "name": "metaBytes_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "token_in", + "name": "metaBytes_in", "type": { "kind": "LIST", "name": null, @@ -32191,7 +12775,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -32200,7 +12784,7 @@ { "defaultValue": null, "description": null, - "name": "token_not_in", + "name": "metaBytes_not_in", "type": { "kind": "LIST", "name": null, @@ -32209,7 +12793,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -32218,197 +12802,391 @@ { "defaultValue": null, "description": null, - "name": "token_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "token_not_contains", + "name": "metaBytes_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "token_not_contains_nocase", + "name": "metaBytes_not_contains", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "token_starts_with", + "name": "content_", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "MetaContentV1_filter", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "token_starts_with_nocase", + "description": "Filter for the block changed event.", + "name": "_change_block", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "token_not_starts_with", + "name": "and", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RainMetaV1_filter", + "ofType": null + } } }, { "defaultValue": null, "description": null, - "name": "token_not_starts_with_nocase", + "name": "or", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RainMetaV1_filter", + "ofType": null + } } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "RainMetaV1_filter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "token_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "metaBytes" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "token_ends_with_nocase", + "isDeprecated": false, + "name": "content" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "RainMetaV1_orderBy", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "Hash of the deployed bytecode for this RainterpreterStore.", + "isDeprecated": false, + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "token_not_ends_with", + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "RainterpreterStoreInstance_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "RainterpreterStoreInstance_filter", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "Instances of this store", + "isDeprecated": false, + "name": "instances", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RainterpreterStoreInstance", + "ofType": null + } + } + } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "RainterpreterStore", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ { - "defaultValue": null, - "description": null, - "name": "token_not_ends_with_nocase", + "args": [], + "deprecationReason": null, + "description": "Address of the RainterpreterStore instance", + "isDeprecated": false, + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "token_", + "isDeprecated": false, + "name": "store", "type": { - "kind": "INPUT_OBJECT", - "name": "ERC20_filter", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RainterpreterStore", + "ofType": null + } } }, + { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "ExpressionDeployer_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExpressionDeployer_filter", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "ExpressionDeployers using this store", + "isDeprecated": false, + "name": "deployers", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExpressionDeployer", + "ofType": null + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "RainterpreterStoreInstance", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "vaultId", + "name": "id", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vaultId_not", + "name": "id_not", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vaultId_gt", + "name": "id_gt", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vaultId_lt", + "name": "id_lt", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vaultId_gte", + "name": "id_gte", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vaultId_lte", + "name": "id_lte", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "vaultId_in", + "name": "id_in", "type": { "kind": "LIST", "name": null, @@ -32417,7 +13195,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } } @@ -32426,7 +13204,7 @@ { "defaultValue": null, "description": null, - "name": "vaultId_not_in", + "name": "id_not_in", "type": { "kind": "LIST", "name": null, @@ -32435,7 +13213,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } } @@ -32444,7 +13222,7 @@ { "defaultValue": null, "description": null, - "name": "vault", + "name": "store", "type": { "kind": "SCALAR", "name": "String", @@ -32454,7 +13232,7 @@ { "defaultValue": null, "description": null, - "name": "vault_not", + "name": "store_not", "type": { "kind": "SCALAR", "name": "String", @@ -32464,7 +13242,7 @@ { "defaultValue": null, "description": null, - "name": "vault_gt", + "name": "store_gt", "type": { "kind": "SCALAR", "name": "String", @@ -32474,7 +13252,7 @@ { "defaultValue": null, "description": null, - "name": "vault_lt", + "name": "store_lt", "type": { "kind": "SCALAR", "name": "String", @@ -32484,7 +13262,7 @@ { "defaultValue": null, "description": null, - "name": "vault_gte", + "name": "store_gte", "type": { "kind": "SCALAR", "name": "String", @@ -32494,7 +13272,7 @@ { "defaultValue": null, "description": null, - "name": "vault_lte", + "name": "store_lte", "type": { "kind": "SCALAR", "name": "String", @@ -32504,7 +13282,7 @@ { "defaultValue": null, "description": null, - "name": "vault_in", + "name": "store_in", "type": { "kind": "LIST", "name": null, @@ -32522,7 +13300,7 @@ { "defaultValue": null, "description": null, - "name": "vault_not_in", + "name": "store_not_in", "type": { "kind": "LIST", "name": null, @@ -32540,7 +13318,7 @@ { "defaultValue": null, "description": null, - "name": "vault_contains", + "name": "store_contains", "type": { "kind": "SCALAR", "name": "String", @@ -32550,7 +13328,7 @@ { "defaultValue": null, "description": null, - "name": "vault_contains_nocase", + "name": "store_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -32560,7 +13338,7 @@ { "defaultValue": null, "description": null, - "name": "vault_not_contains", + "name": "store_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -32570,7 +13348,7 @@ { "defaultValue": null, "description": null, - "name": "vault_not_contains_nocase", + "name": "store_not_contains_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -32580,7 +13358,7 @@ { "defaultValue": null, "description": null, - "name": "vault_starts_with", + "name": "store_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -32590,7 +13368,7 @@ { "defaultValue": null, "description": null, - "name": "vault_starts_with_nocase", + "name": "store_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -32600,7 +13378,7 @@ { "defaultValue": null, "description": null, - "name": "vault_not_starts_with", + "name": "store_not_starts_with", "type": { "kind": "SCALAR", "name": "String", @@ -32610,7 +13388,7 @@ { "defaultValue": null, "description": null, - "name": "vault_not_starts_with_nocase", + "name": "store_not_starts_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -32620,7 +13398,7 @@ { "defaultValue": null, "description": null, - "name": "vault_ends_with", + "name": "store_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -32630,7 +13408,7 @@ { "defaultValue": null, "description": null, - "name": "vault_ends_with_nocase", + "name": "store_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -32640,7 +13418,7 @@ { "defaultValue": null, "description": null, - "name": "vault_not_ends_with", + "name": "store_not_ends_with", "type": { "kind": "SCALAR", "name": "String", @@ -32650,7 +13428,7 @@ { "defaultValue": null, "description": null, - "name": "vault_not_ends_with_nocase", + "name": "store_not_ends_with_nocase", "type": { "kind": "SCALAR", "name": "String", @@ -32660,77 +13438,171 @@ { "defaultValue": null, "description": null, - "name": "vault_", + "name": "store_", + "type": { + "kind": "INPUT_OBJECT", + "name": "RainterpreterStore_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "deployers_", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExpressionDeployer_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Filter for the block changed event.", + "name": "_change_block", "type": { "kind": "INPUT_OBJECT", - "name": "Vault_filter", + "name": "BlockChangedFilter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmount", + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RainterpreterStoreInstance_filter", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RainterpreterStoreInstance_filter", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "RainterpreterStoreInstance_filter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "store" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "store__id" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "deployers" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "RainterpreterStoreInstance_orderBy", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "id", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmount_not", + "name": "id_not", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmount_gt", + "name": "id_gt", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmount_lt", + "name": "id_lt", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmount_gte", + "name": "id_gte", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmount_lte", + "name": "id_lte", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmount_in", + "name": "id_in", "type": { "kind": "LIST", "name": null, @@ -32739,94 +13611,251 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "ID", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "id_not_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", "ofType": null } } } }, { - "defaultValue": null, + "defaultValue": null, + "description": null, + "name": "instances_", + "type": { + "kind": "INPUT_OBJECT", + "name": "RainterpreterStoreInstance_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Filter for the block changed event.", + "name": "_change_block", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RainterpreterStore_filter", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RainterpreterStore_filter", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "RainterpreterStore_filter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "instances" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "RainterpreterStore_orderBy", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sources", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + } + } + }, + { + "args": [], + "deprecationReason": null, "description": null, - "name": "requestedAmount_not_in", + "isDeprecated": false, + "name": "constants", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } } } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "StateConfig", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "requestedAmountDisplay", + "name": "id", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmountDisplay_not", + "name": "id_not", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmountDisplay_gt", + "name": "id_gt", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmountDisplay_lt", + "name": "id_lt", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmountDisplay_gte", + "name": "id_gte", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmountDisplay_lte", + "name": "id_lte", "type": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "requestedAmountDisplay_in", + "name": "id_in", "type": { "kind": "LIST", "name": null, @@ -32835,7 +13864,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } } @@ -32844,7 +13873,7 @@ { "defaultValue": null, "description": null, - "name": "requestedAmountDisplay_not_in", + "name": "id_not_in", "type": { "kind": "LIST", "name": null, @@ -32853,7 +13882,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "ID", "ofType": null } } @@ -32862,67 +13891,7 @@ { "defaultValue": null, "description": null, - "name": "amount", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_not", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_gt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_lt", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_gte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_lte", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount_in", + "name": "sources", "type": { "kind": "LIST", "name": null, @@ -32931,7 +13900,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Bytes", "ofType": null } } @@ -32940,7 +13909,7 @@ { "defaultValue": null, "description": null, - "name": "amount_not_in", + "name": "sources_not", "type": { "kind": "LIST", "name": null, @@ -32949,7 +13918,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Bytes", "ofType": null } } @@ -32958,67 +13927,7 @@ { "defaultValue": null, "description": null, - "name": "amountDisplay", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_not", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_gt", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_lt", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_gte", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_lte", - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amountDisplay_in", + "name": "sources_contains", "type": { "kind": "LIST", "name": null, @@ -33027,7 +13936,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null } } @@ -33036,7 +13945,7 @@ { "defaultValue": null, "description": null, - "name": "amountDisplay_not_in", + "name": "sources_contains_nocase", "type": { "kind": "LIST", "name": null, @@ -33045,7 +13954,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "BigDecimal", + "name": "Bytes", "ofType": null } } @@ -33054,67 +13963,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_in", + "name": "sources_not_contains", "type": { "kind": "LIST", "name": null, @@ -33123,7 +13972,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -33132,7 +13981,7 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_not_in", + "name": "sources_not_contains_nocase", "type": { "kind": "LIST", "name": null, @@ -33141,7 +13990,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } } @@ -33150,902 +13999,2456 @@ { "defaultValue": null, "description": null, - "name": "tokenVault_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tokenVault_not_contains_nocase", + "name": "constants", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "tokenVault_starts_with", + "name": "constants_not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "tokenVault_starts_with_nocase", + "name": "constants_contains", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "tokenVault_not_starts_with", + "name": "constants_contains_nocase", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "tokenVault_not_starts_with_nocase", + "name": "constants_not_contains", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "tokenVault_ends_with", + "name": "constants_not_contains_nocase", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } } }, { "defaultValue": null, - "description": null, - "name": "tokenVault_ends_with_nocase", + "description": "Filter for the block changed event.", + "name": "_change_block", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tokenVault_not_ends_with", + "name": "and", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StateConfig_filter", + "ofType": null + } } }, { "defaultValue": null, "description": null, - "name": "tokenVault_not_ends_with_nocase", + "name": "or", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StateConfig_filter", + "ofType": null + } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "StateConfig_filter", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "tokenVault_", - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", - "ofType": null - } + "isDeprecated": false, + "name": "id" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "transaction", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "sources" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "transaction_not", + "isDeprecated": false, + "name": "constants" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "StateConfig_orderBy", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "String", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "account", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Account", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Account_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Account_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "transaction_gt", + "isDeprecated": false, + "name": "accounts", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + } + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "transaction_lt", + "isDeprecated": false, + "name": "contract", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Contract", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Contract_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Contract_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "transaction_gte", + "isDeprecated": false, + "name": "contracts", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Contract", + "ofType": null + } + } + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "transaction_lte", + "isDeprecated": false, + "name": "expressionDeployer", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ExpressionDeployer", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "transaction_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "ExpressionDeployer_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExpressionDeployer_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } } - } - }, - { - "defaultValue": null, + ], + "deprecationReason": null, "description": null, - "name": "transaction_not_in", + "isDeprecated": false, + "name": "expressionDeployers", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExpressionDeployer", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "transaction_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "transaction_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "transaction_not_starts_with", + "isDeprecated": false, + "name": "interpreter", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Interpreter", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Interpreter_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Interpreter_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "transaction_not_starts_with_nocase", + "isDeprecated": false, + "name": "interpreters", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Interpreter", + "ofType": null + } + } + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "transaction_ends_with", + "isDeprecated": false, + "name": "interpreterInstance", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "InterpreterInstance", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "InterpreterInstance_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "InterpreterInstance_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "transaction_ends_with_nocase", + "isDeprecated": false, + "name": "interpreterInstances", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InterpreterInstance", + "ofType": null + } + } + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "transaction_not_ends_with", + "isDeprecated": false, + "name": "rainterpreterStore", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "RainterpreterStore", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "RainterpreterStore_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "RainterpreterStore_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "transaction_not_ends_with_nocase", + "isDeprecated": false, + "name": "rainterpreterStores", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RainterpreterStore", + "ofType": null + } + } + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "transaction_", + "isDeprecated": false, + "name": "rainterpreterStoreInstance", "type": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", + "kind": "OBJECT", + "name": "RainterpreterStoreInstance", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "RainterpreterStoreInstance_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "RainterpreterStoreInstance_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "emitter", + "isDeprecated": false, + "name": "rainterpreterStoreInstances", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RainterpreterStoreInstance", + "ofType": null + } + } + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "emitter_not", + "isDeprecated": false, + "name": "expression", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Expression", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Expression_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Expression_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "emitter_gt", + "isDeprecated": false, + "name": "expressions", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Expression", + "ofType": null + } + } + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "emitter_lt", + "isDeprecated": false, + "name": "deployExpressionEvent", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "DeployExpressionEvent", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "DeployExpressionEvent_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "DeployExpressionEvent_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "emitter_gte", + "isDeprecated": false, + "name": "deployExpressionEvents", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeployExpressionEvent", + "ofType": null + } + } + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "emitter_lte", + "isDeprecated": false, + "name": "transaction", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Transaction", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "emitter_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Transaction_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Transaction_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", "ofType": null } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } } - } - }, - { - "defaultValue": null, + ], + "deprecationReason": null, "description": null, - "name": "emitter_not_in", + "isDeprecated": false, + "name": "transactions", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "emitter_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "emitter_not_ends_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "emitter_", + "isDeprecated": false, + "name": "stateConfig", "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", + "kind": "OBJECT", + "name": "StateConfig", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "StateConfig_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "StateConfig_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "timestamp", + "isDeprecated": false, + "name": "stateConfigs", "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StateConfig", + "ofType": null + } + } + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "timestamp_not", + "isDeprecated": false, + "name": "rainMetaV1", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "RainMetaV1", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "RainMetaV1_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "RainMetaV1_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "timestamp_gt", + "isDeprecated": false, + "name": "rainMetaV1S", "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RainMetaV1", + "ofType": null + } + } + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "timestamp_lt", + "isDeprecated": false, + "name": "metaContentV1", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "MetaContentV1", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "MetaContentV1_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "MetaContentV1_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "timestamp_gte", + "isDeprecated": false, + "name": "metaContentV1S", "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetaContentV1", + "ofType": null + } + } + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "name": "timestamp_lte", + "isDeprecated": false, + "name": "event", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INTERFACE", + "name": "Event", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Event_orderBy", "ofType": null } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Event_filter", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } + }, + { + "defaultValue": "deny", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "name": "subgraphError", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + } } - } - }, - { - "defaultValue": null, + ], + "deprecationReason": null, "description": null, - "name": "timestamp_not_in", + "isDeprecated": false, + "name": "events", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Event", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": "Filter for the block changed event.", - "name": "_change_block", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "and", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VaultWithdraw_filter", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + } } - } - }, - { - "defaultValue": null, - "description": null, - "name": "or", + ], + "deprecationReason": null, + "description": "Access to subgraph metadata", + "isDeprecated": false, + "name": "_meta", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "VaultWithdraw_filter", - "ofType": null - } + "kind": "OBJECT", + "name": "_Meta_", + "ofType": null } } ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "VaultWithdraw_filter", + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Subscription", "possibleTypes": null }, { "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sender" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sender__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__name" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__symbol" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__totalSupply" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__totalSupplyDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "token__decimals" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vaultId" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vault" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vault__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "requestedAmount" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "requestedAmountDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "amount" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "amountDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVault" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVault__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVault__balance" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVault__balanceDisplay" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction__timestamp" - }, + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "transaction__blockNumber" + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "emitter" + "name": "timestamp", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "emitter__id" + "name": "blockNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } }, { + "args": [ + { + "defaultValue": "0", + "description": null, + "name": "skip", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "100", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "ENUM", + "name": "Event_orderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderDirection", + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "Event_filter", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "timestamp" + "name": "events", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Event", + "ofType": null + } + } + } } ], - "fields": null, "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "VaultWithdraw_orderBy", + "interfaces": [], + "kind": "OBJECT", + "name": "Transaction", "possibleTypes": null }, { @@ -34152,67 +16555,67 @@ { "defaultValue": null, "description": null, - "name": "owner", + "name": "timestamp", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "owner_not", + "name": "timestamp_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "owner_gt", + "name": "timestamp_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "owner_lt", + "name": "timestamp_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "owner_gte", + "name": "timestamp_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "owner_lte", + "name": "timestamp_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "owner_in", + "name": "timestamp_in", "type": { "kind": "LIST", "name": null, @@ -34221,7 +16624,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } } @@ -34230,7 +16633,7 @@ { "defaultValue": null, "description": null, - "name": "owner_not_in", + "name": "timestamp_not_in", "type": { "kind": "LIST", "name": null, @@ -34239,7 +16642,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } } @@ -34248,160 +16651,106 @@ { "defaultValue": null, "description": null, - "name": "owner_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_contains_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_starts_with_nocase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_not_starts_with", + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "owner_not_starts_with_nocase", + "name": "blockNumber_not", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "owner_ends_with", + "name": "blockNumber_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "owner_ends_with_nocase", + "name": "blockNumber_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "owner_not_ends_with", + "name": "blockNumber_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "owner_not_ends_with_nocase", + "name": "blockNumber_lte", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "owner_", - "type": { - "kind": "INPUT_OBJECT", - "name": "Account_filter", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tokenVaults_", + "name": "blockNumber_in", "type": { - "kind": "INPUT_OBJECT", - "name": "TokenVault_filter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "deposits_", + "name": "blockNumber_not_in", "type": { - "kind": "INPUT_OBJECT", - "name": "VaultDeposit_filter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "withdraws_", + "name": "events_", "type": { "kind": "INPUT_OBJECT", - "name": "VaultWithdraw_filter", + "name": "Event_filter", "ofType": null } }, @@ -34424,7 +16773,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "Vault_filter", + "name": "Transaction_filter", "ofType": null } } @@ -34438,7 +16787,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "Vault_filter", + "name": "Transaction_filter", "ofType": null } } @@ -34446,7 +16795,7 @@ ], "interfaces": null, "kind": "INPUT_OBJECT", - "name": "Vault_filter", + "name": "Transaction_filter", "possibleTypes": null }, { @@ -34462,38 +16811,26 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "owner" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "owner__id" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tokenVaults" + "name": "timestamp" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "deposits" + "name": "blockNumber" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "withdraws" + "name": "events" } ], "fields": null, "inputFields": null, "interfaces": null, "kind": "ENUM", - "name": "Vault_orderBy", + "name": "Transaction_orderBy", "possibleTypes": null }, {