@taquito/rpc
Advanced tools
Comparing version 21.0.0-beta.0 to 21.0.0-beta.1
@@ -38,3 +38,3 @@ "use strict"; | ||
* | ||
* @example new RpcClientCache(new RpcClient('https://mainnet.ecadinfra.com/')) | ||
* @example new RpcClientCache(new RpcClient('https://mainnet.tezos.ecadinfra.com/')) | ||
*/ | ||
@@ -661,3 +661,3 @@ constructor(rpcClient, ttl = defaultTtl) { | ||
* @description Retrieves the list of delegates allowed to bake a block. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -684,3 +684,3 @@ getBakingRights() { | ||
* @description Retrieves the delegates allowed to attest a block | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -820,3 +820,3 @@ getAttestationRights() { | ||
* @description Forge an operation returning the unsigned bytes | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -878,3 +878,3 @@ forgeOperations(data_1) { | ||
* @description Run an operation with the context of the given block and without signature checks and return the operation application result, including the consumed gas. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -890,3 +890,3 @@ runOperation(op_1) { | ||
* @description Simulate running an operation at some future moment (based on the number of blocks given in the `latency` argument), and return the operation application result. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -902,3 +902,3 @@ simulateOperation(op_1) { | ||
* @description Run a Michelson script in the current context | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -914,3 +914,3 @@ runCode(code_1) { | ||
* @description Simulate a call to a michelson view | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -928,3 +928,3 @@ runScriptView(_a, _b) { | ||
* @description Simulate a call to a view following the TZIP-4 standard. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -960,3 +960,3 @@ runView(_a, _b) { | ||
* @example packData({ data: { string: "test" }, type: { prim: "string" } }) | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -1084,3 +1084,3 @@ packData(data_1) { | ||
* @description Access the used storage space of the contract | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -1104,3 +1104,3 @@ getStorageUsedSpace(contract_1) { | ||
= * @description Access the paid storage space of the contract | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -1126,3 +1126,3 @@ getStoragePaidSpace(contract_1) { | ||
* @example ticket { ticketer: 'address', content_type: { prim: "string" }, content: { string: 'ticket1' } } | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -1146,3 +1146,3 @@ getTicketBalance(contract_1, ticket_1) { | ||
* @description Access the complete list of tickets owned by the given contract by scanning the contract's storage. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -1149,0 +1149,0 @@ getAllTicketBalances(contract_1) { |
@@ -71,3 +71,3 @@ "use strict"; | ||
* | ||
* @example new RpcClient('https://mainnet.ecadinfra.com/', 'main') this will use https://mainnet.ecadinfra.com//chains/main | ||
* @example new RpcClient('https://mainnet.tezos.ecadinfra.com/', 'main') this will use https://mainnet.tezos.ecadinfra.com//chains/main | ||
*/ | ||
@@ -592,3 +592,3 @@ constructor(url, chain = rpc_client_interface_1.defaultChain, httpBackend = new http_utils_1.HttpBackend()) { | ||
* @description Retrieves the list of delegates allowed to bake a block. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -609,3 +609,3 @@ getBakingRights() { | ||
* @description Retrieves the delegates allowed to attest a block | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -720,3 +720,3 @@ getAttestationRights() { | ||
* @description Forge an operation returning the unsigned bytes | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -784,3 +784,3 @@ forgeOperations(data_1) { | ||
* @description Run an operation with the context of the given block and without signature checks and return the operation application result, including the consumed gas. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -803,3 +803,3 @@ runOperation(op_1) { | ||
* @description Simulate running an operation at some future moment (based on the number of blocks given in the `latency` argument), and return the operation application result. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -822,3 +822,3 @@ simulateOperation(op_1) { | ||
* @description Run a Michelson script in the current context | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -838,3 +838,3 @@ runCode(code_1) { | ||
* @description Simulate a call to a michelson view | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -855,3 +855,3 @@ runScriptView(_a, _b) { | ||
* @description Simulate a call to a view following the TZIP-4 standard. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -885,3 +885,3 @@ runView(_a, _b) { | ||
* @example packData({ data: { string: "test" }, type: { prim: "string" } }) | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -983,3 +983,3 @@ packData(data_1) { | ||
* @description Access the used storage space of the contract | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -998,3 +998,3 @@ getStorageUsedSpace(contract_1) { | ||
* @description Access the paid storage space of the contract | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -1001,0 +1001,0 @@ getStoragePaidSpace(contract_1) { |
@@ -6,4 +6,4 @@ "use strict"; | ||
exports.VERSION = { | ||
"commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", | ||
"version": "21.0.0-beta.0" | ||
"commitHash": "dc22d94eecc9c8073103ba09a7493d4604a8cf54", | ||
"version": "21.0.0-beta.1" | ||
}; |
@@ -22,3 +22,3 @@ import BigNumber from 'bignumber.js'; | ||
* | ||
* @example new RpcClientCache(new RpcClient('https://mainnet.ecadinfra.com/')) | ||
* @example new RpcClientCache(new RpcClient('https://mainnet.tezos.ecadinfra.com/')) | ||
*/ | ||
@@ -243,3 +243,3 @@ constructor(rpcClient: RpcClientInterface, ttl?: number); | ||
* @description Retrieves the list of delegates allowed to bake a block. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -251,3 +251,3 @@ getBakingRights(args?: BakingRightsQueryArguments, { block }?: RPCOptions): Promise<BakingRightsResponse>; | ||
* @description Retrieves the delegates allowed to attest a block | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -295,3 +295,3 @@ getAttestationRights(args?: AttestationRightsQueryArguments, { block }?: RPCOptions): Promise<AttestationRightsResponse>; | ||
* @description Forge an operation returning the unsigned bytes | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -325,3 +325,3 @@ forgeOperations(data: ForgeOperationsParams, { block }?: RPCOptions): Promise<string>; | ||
* @description Run an operation with the context of the given block and without signature checks and return the operation application result, including the consumed gas. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -333,3 +333,3 @@ runOperation(op: RPCRunOperationParam, { block }?: RPCOptions): Promise<PreapplyResponse>; | ||
* @description Simulate running an operation at some future moment (based on the number of blocks given in the `latency` argument), and return the operation application result. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -341,3 +341,3 @@ simulateOperation(op: RPCSimulateOperationParam, { block }?: RPCOptions): Promise<PreapplyResponse>; | ||
* @description Run a Michelson script in the current context | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -349,3 +349,3 @@ runCode(code: RPCRunCodeParam, { block }?: RPCOptions): Promise<RunCodeResult>; | ||
* @description Simulate a call to a michelson view | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -357,3 +357,3 @@ runScriptView({ unparsing_mode, ...rest }: RPCRunScriptViewParam, { block }?: RPCOptions): Promise<RunScriptViewResult>; | ||
* @description Simulate a call to a view following the TZIP-4 standard. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -371,3 +371,3 @@ runView({ unparsing_mode, ...rest }: RPCRunViewParam, { block }?: RPCOptions): Promise<RunViewResult>; | ||
* @example packData({ data: { string: "test" }, type: { prim: "string" } }) | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -426,3 +426,3 @@ packData(data: PackDataParams, { block }?: RPCOptions): Promise<{ | ||
* @description Access the used storage space of the contract | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -436,3 +436,3 @@ getStorageUsedSpace(contract: string, { block }?: { | ||
= * @description Access the paid storage space of the contract | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -448,3 +448,3 @@ getStoragePaidSpace(contract: string, { block }?: { | ||
* @example ticket { ticketer: 'address', content_type: { prim: "string" }, content: { string: 'ticket1' } } | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -456,3 +456,3 @@ getTicketBalance(contract: string, ticket: TicketTokenParams, { block }?: RPCOptions): Promise<string>; | ||
* @description Access the complete list of tickets owned by the given contract by scanning the contract's storage. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -459,0 +459,0 @@ getAllTicketBalances(contract: string, { block }?: RPCOptions): Promise<AllTicketBalances>; |
@@ -29,3 +29,3 @@ /** | ||
* | ||
* @example new RpcClient('https://mainnet.ecadinfra.com/', 'main') this will use https://mainnet.ecadinfra.com//chains/main | ||
* @example new RpcClient('https://mainnet.tezos.ecadinfra.com/', 'main') this will use https://mainnet.tezos.ecadinfra.com//chains/main | ||
*/ | ||
@@ -242,3 +242,3 @@ constructor(url: string, chain?: string, httpBackend?: HttpBackend); | ||
* @description Retrieves the list of delegates allowed to bake a block. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -250,3 +250,3 @@ getBakingRights(args?: BakingRightsQueryArguments, { block }?: RPCOptions): Promise<BakingRightsResponse>; | ||
* @description Retrieves the delegates allowed to attest a block | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -294,3 +294,3 @@ getAttestationRights(args?: AttestationRightsQueryArguments, { block }?: RPCOptions): Promise<AttestationRightsResponse>; | ||
* @description Forge an operation returning the unsigned bytes | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -324,3 +324,3 @@ forgeOperations(data: ForgeOperationsParams, { block }?: RPCOptions): Promise<string>; | ||
* @description Run an operation with the context of the given block and without signature checks and return the operation application result, including the consumed gas. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -332,3 +332,3 @@ runOperation(op: RPCRunOperationParam, { block, version }?: RPCOptions): Promise<PreapplyResponse>; | ||
* @description Simulate running an operation at some future moment (based on the number of blocks given in the `latency` argument), and return the operation application result. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -340,3 +340,3 @@ simulateOperation(op: RPCSimulateOperationParam, { block, version }?: RPCOptions): Promise<PreapplyResponse>; | ||
* @description Run a Michelson script in the current context | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -348,3 +348,3 @@ runCode(code: RPCRunCodeParam, { block }?: RPCOptions): Promise<RunCodeResult>; | ||
* @description Simulate a call to a michelson view | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -356,3 +356,3 @@ runScriptView({ unparsing_mode, ...rest }: RPCRunScriptViewParam, { block }?: RPCOptions): Promise<RunScriptViewResult>; | ||
* @description Simulate a call to a view following the TZIP-4 standard. | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -370,3 +370,3 @@ runView({ unparsing_mode, ...rest }: RPCRunViewParam, { block }?: RPCOptions): Promise<RunViewResult>; | ||
* @example packData({ data: { string: "test" }, type: { prim: "string" } }) | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -425,3 +425,3 @@ packData(data: PackDataParams, { block }?: RPCOptions): Promise<{ | ||
* @description Access the used storage space of the contract | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -435,3 +435,3 @@ getStorageUsedSpace(contract: string, { block }?: { | ||
* @description Access the paid storage space of the contract | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/paris-openapi-rc.json | ||
* @see https://gitlab.com/tezos/tezos/-/blob/master/docs/api/alpha-openapi.json | ||
*/ | ||
@@ -438,0 +438,0 @@ getStoragePaidSpace(contract: string, { block }?: { |
{ | ||
"name": "@taquito/rpc", | ||
"version": "21.0.0-beta.0", | ||
"version": "21.0.0-beta.1", | ||
"description": "Provides low level methods, and types to invoke RPC calls from a Nomadic Tezos RPC node", | ||
@@ -69,5 +69,5 @@ "keywords": [ | ||
"dependencies": { | ||
"@taquito/core": "^21.0.0-beta.0", | ||
"@taquito/http-utils": "^21.0.0-beta.0", | ||
"@taquito/utils": "^21.0.0-beta.0", | ||
"@taquito/core": "^21.0.0-beta.1", | ||
"@taquito/http-utils": "^21.0.0-beta.1", | ||
"@taquito/utils": "^21.0.0-beta.1", | ||
"bignumber.js": "^9.1.2" | ||
@@ -93,3 +93,3 @@ }, | ||
"rimraf": "^6.0.1", | ||
"rollup": "^4.19.1", | ||
"rollup": "^4.22.4", | ||
"rollup-plugin-json": "^4.0.0", | ||
@@ -103,3 +103,3 @@ "rollup-plugin-typescript2": "^0.36.0", | ||
}, | ||
"gitHead": "44bfadbebbff97b8bf6beaef091b0aae72e2e8a6" | ||
"gitHead": "9e6ff6e2527d143a41abd2c012ff5ab1024526cc" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
552818