2020-08-24 10:25:49 +00:00
|
|
|
# Groups
|
|
|
|
* [](#)
|
|
|
|
* [Closing](#Closing)
|
OpenRPC Support (#5843)
* main: init implement rpc.Discover RPC method
This implement the basic functionality for the method
over HTTP RPC.
Signed-off-by: meows <b5c6@protonmail.com>
* main,go.mod,go.sum: init example with go-openrpc-reflect lib
Signed-off-by: meows <b5c6@protonmail.com>
Conflicts:
go.mod
go.sum
* main: make variable name human-friendly
Signed-off-by: meows <b5c6@protonmail.com>
* main,go.mod,go.sum: init impl of go-openrp-reflect printing document
Signed-off-by: meows <b5c6@protonmail.com>
Conflicts:
go.mod
go.sum
* go.mod,go.sum: use go-openrpc-reflect and open-rpc/meta-schema hackforks
This is for development only.
Versions need to be bumped when they're ready for use
as canonical remotes.
Signed-off-by: meows <b5c6@protonmail.com>
* main,openrpc,main: refactor openrpc supporting code to own package
This eliminates code duplication.
Signed-off-by: meows <b5c6@protonmail.com>
* main: add rpc.Discover to openrpc document
Signed-off-by: meows <b5c6@protonmail.com>
* openrpc: fix rpc.discover method name casing
Also fixes casing stuff for the rest of Filecoin.
methods.
Signed-off-by: meows <b5c6@protonmail.com>
* Revert "main: add rpc.Discover to openrpc document"
This reverts commit 116898efb10f33e405ac74acb1aa6daefcd46a62.
* main: fix document creation method name
This fixes an issue caused with the latest reverting
commit.
Signed-off-by: meows <b5c6@protonmail.com>
* main,docgen,openrpc: refactor to share api parsing, etc as docgen exported stuff
Signed-off-by: meows <b5c6@protonmail.com>
Makefile: fix docgen refactoring for makefile use of command
Signed-off-by: meows <b5c6@protonmail.com>
* openrpc: add schema.examples to app reflector
There are quite of few of these already registered
for the docgen command, so it makes sense to use
those!
Signed-off-by: meows <b5c6@protonmail.com>
* openrpc: init method pairing examples
Signed-off-by: meows <b5c6@protonmail.com>
* go.mod,go.sum: bump go.mod to use latest meta-schema and openrpc-reflect versions
Signed-off-by: meows <b5c6@protonmail.com>
* openrpc: init SchemaType mapper function
This function will handle the manual configurations
for app-specific data types w/r/t their json schema
representation.
This is useful for cases where the reflect library
is unable to provide a sufficient representation
automatically.
Provided in this commit is an initial implementation
for the integerD type (assuming number are represented
in the API as hexs), and a commonly used cid.Cid type.
Signed-off-by: meows <b5c6@protonmail.com>
* go.mod,go.sum: tame dependencies by bumping etclabscore/go-openrpc-reflect
This removes a problematic dependency
on github.com/ethereum/go-ethereum, which was
imported as a dependency for a couple github.com/etclabscore/go-openrpc-reflect
tests.
etclabscore/go-openrpc-reflect v0.0.36 has removed this
dependency, so this commit is the result of bumping
that version and then running 'go mod tidy'
This is in response to a review at
https://github.com/filecoin-project/lotus/pull/4711#pullrequestreview-535686205
Date: 2020-11-21 06:52:48-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* main: add 'miner' arg to openrpc gen cmd
This allows the command to EITHER
generate the doc for Full or Miner APIs.
See comment for usage.
Date: 2020-11-21 07:48:05-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* docgen: add missing examples for Miner API
Generating the Miner API OpenRPC doc
(via 'go run ./api/openrpc/cmd miner') caused
the example logic to panic because some types
were missing.
This commit adds those missing types, although
I'm not an expert in the API so I can't
suggest that the example values provided are
ideal or well representative.
Date: 2020-11-21 07:50:21-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* build/openrpc/full.json,build/openrpc/miner.json: add build/openrpc/[full/miner].json docs
These will be used as static documents
provided by the rpc.discover method.
Date: 2020-11-21 07:51:39-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* build: init go-rice openrpc static assets
Date: 2020-11-21 08:23:06-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* main: remove rpc.discover implementation from runtime plugin
Instead of generating the doc on the fly,
we're going to serve a static asset.
Rel https://github.com/filecoin-project/lotus/pull/4711#pullrequestreview-535686205
This removes the runtime implementation from the
RPC server construction.
Date: 2020-11-21 08:41:20-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api,apistruct,common: add Discover(ctx) method to CommonAPI interface and structs
Date: 2020-11-21 08:41:56-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* main: use rpc server method aliasing for rpc.discover
This depends on a currently-forked change at
filecoin-project/go-jsonrpc 8350f9463ee451b187d35c492e32f1b999e80210
which establishes this new method RPCServer.AliasMethod.
This solves the problem that the OpenRPC
spec says that the document should be served
at the system extension-prefixed endpoing
rpc.discover (not Filecoin.Discover).
In fact, the document will be available at BOTH
endpoints, but that duplicity is harmless.
Date: 2020-11-21 09:18:26-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api,apistruct,build,common: rpc.discover: return json object instead of string
Instead of casting the JSON asset from bytes to string,
unmarshal it to a map[string]interface{} so the
server will provide it as a JSON object.
Date: 2020-11-21 09:27:11-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* Makefile: merge resolve: docsgen command path
Date: 2020-11-22 07:19:36-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* apistruct,main,docgen,openrpc: merge resolve: fix func exporteds, signatures
Date: 2020-11-22 07:31:03-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* go.mod,go.sum: 'get get' auto-bumps version
Date: 2020-11-22 07:31:44-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* Makefile,docgen,main,build/openrpc: refactor openrpc documentation generation
This creates Makefile command docsgen-openrpc-json,
and refactors the docsgen command to generate both
the markdown and openrpc json documents, redirecting
the output of the openrpc json documentation to
the build/openrpc/ directory, where those json
files will be compiled as static assets via go-rice
boxes.
The api/openrpc/cmd now uses usage argumentation
congruent to that of the docgen command (switching
on API context).
Date: 2020-11-22 08:01:18-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* main,docgen_openrpc: rename api/openrpc -> api/docgen-openrpc
Renames the package as well.
This is intended to parallel the
existing docgen package and command
namespacing.
Date: 2020-11-22 10:34:46-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api,apistruct,docgen,build,build/openrpc: use typed Discover response
Instead of using a map[string]interface{}, use
a typed response for the Discover method implementation.
This avoids having to set a docgen Example for
the generic map[string]interface{} (as an openrpc document)
which both pollutes the generic type and lacks
useful information for the Discover method example.
Date: 2020-11-22 08:31:16-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* apistruct,build,main,impl: implement Discover method for Worker and StorageMiner APIs
Methods return static compiled assets respective
to the APIs.
Date: 2020-11-22 08:57:18-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* docgen_openrpc,build/openrpc: remove timestamping from openrpc doc info
This should allow openrpc docs generated at different
times to be equal. This is important because the CI
(Circle) runs the docgen command and tests that
the output and the source are unchanged (via git diff).
Date: 2020-11-22 10:47:07-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* main,docgen_openrpc,main,build: fix lint issues
Fixes goimports, staticcheck, golint issues.
Date: 2020-11-22 11:06:46-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* docgenopenrpc: fix: don't use an underscore in package name (golint)
Date: 2020-11-22 11:07:53-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* go.sum: fix: mod-tidy-check (run 'go mod tidy')
Date: 2020-11-22 11:09:48-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* go.mod,go.sum: bump filecoin-project/go-jsonrpc dep to latest
This version includes the necessary RPCServer.AliasMethod
method.
Date: 2020-11-23 12:16:15-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* Makefile,main,build,build/openrpc: init gzipped openrpc static docs
Date: 2020-11-24 06:15:06-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* build: refactor gzip reading
Date: 2020-11-24 06:18:34-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* build: add basic test for openrpc doc from static assets
Date: 2020-11-24 06:30:23-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* build: handle reader Close error
This keeps the errcheck linter happy.
Date: 2020-11-24 06:33:14-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* go.sum: run 'go mod tidy'
Date: 2020-11-24 06:36:07-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* go.mod,go.sum: go mod tidy
Tidying up after resolving the merge conflicts
with master at go.mod
Date: 2020-11-24 06:40:45-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* go.mod,go.sum: bump filecoin-project/go-jsonrpc to latest
This is a repeat of 76e6fd2, since the latest merge
to master seems to have reverted this.
Date: 2020-11-24 06:42:30-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* docgenopenrpc,build/openrpc: remove method example pairings, improve schema examples
Removing method example pairings since they were
redundant to schema examples and were not
implemented well.
Improved schema examples by using the ExampleValue
method instead of the map lookup.
Made a note in the comment here that this is
not ideal, since we have to make a shortcut assumption
/workaround by using 'unknown' as the method name
and the typea as its own parent.
Luckily these values aren't heavily used by the
method logic.
Date: 2020-11-27 12:57:36-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* docgenopenrpc: use generic number jsonschema for number types
Previously used an integer schema assuming
hex encoding. It appears, based on review some
of the examples, that this may not be the case.
Obvioussly this schema could be more descriptive,
but just shooting for mostly likely to be
not wrong at this point.
Date: 2020-12-15 14:44:37-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* cmd/lotus,go.mod,go.sum: maybe fix straggling merge resolution conflicts
Date: 2021-01-19 12:30:42-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* build/openrpc/full.json.gz,build/openrpc/miner.json.gz,build/openrpc/worker.json.gz: run 'make docsgen'
Date: 2021-01-19 12:33:55-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api/apistruct,node/impl: (lint) gofmt
Date: 2021-01-19 12:39:48-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api/docgen: maybe fix parse error: open ./api: no such file or directory
Date: 2021-01-19 12:52:04-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api/docgen,build/openrpc: maybe fix no such file error and run 'make docsgen'
Date: 2021-01-19 12:55:52-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api/docgen: return if AST comment/groupdoc parsing encounters any error
This will returns empty comments/docs maps.
This should fix issues like:
https://app.circleci.com/pipelines/github/filecoin-project/lotus/12445/workflows/4ebadce9-a298-4ad1-939b-f19ef4c0a5bf/jobs/107218
where the environment makes file lookups hard or
impossible.
Date: 2021-01-19 13:04:58-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api: Don't depend on build/
* make: support parallel docsgen
* openrpc gen: Use simple build version
* methodgen
* goimports
Co-authored-by: meows <b5c6@protonmail.com>
2021-03-19 18:22:46 +00:00
|
|
|
* [Discover](#Discover)
|
2020-10-18 18:10:39 +00:00
|
|
|
* [Session](#Session)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [Shutdown](#Shutdown)
|
|
|
|
* [Version](#Version)
|
|
|
|
* [Auth](#Auth)
|
|
|
|
* [AuthNew](#AuthNew)
|
|
|
|
* [AuthVerify](#AuthVerify)
|
|
|
|
* [Chain](#Chain)
|
2021-07-26 05:33:25 +00:00
|
|
|
* [ChainBlockstoreInfo](#ChainBlockstoreInfo)
|
2021-07-25 08:25:29 +00:00
|
|
|
* [ChainCheckBlockstore](#ChainCheckBlockstore)
|
2020-09-10 17:47:19 +00:00
|
|
|
* [ChainDeleteObj](#ChainDeleteObj)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ChainExport](#ChainExport)
|
2022-08-20 00:41:03 +00:00
|
|
|
* [ChainExportRangeInternal](#ChainExportRangeInternal)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ChainGetBlock](#ChainGetBlock)
|
|
|
|
* [ChainGetBlockMessages](#ChainGetBlockMessages)
|
2023-01-13 19:11:13 +00:00
|
|
|
* [ChainGetEvents](#ChainGetEvents)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ChainGetGenesis](#ChainGetGenesis)
|
|
|
|
* [ChainGetMessage](#ChainGetMessage)
|
2021-07-01 03:20:22 +00:00
|
|
|
* [ChainGetMessagesInTipset](#ChainGetMessagesInTipset)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ChainGetNode](#ChainGetNode)
|
|
|
|
* [ChainGetParentMessages](#ChainGetParentMessages)
|
|
|
|
* [ChainGetParentReceipts](#ChainGetParentReceipts)
|
|
|
|
* [ChainGetPath](#ChainGetPath)
|
|
|
|
* [ChainGetTipSet](#ChainGetTipSet)
|
2021-08-05 17:53:12 +00:00
|
|
|
* [ChainGetTipSetAfterHeight](#ChainGetTipSetAfterHeight)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ChainGetTipSetByHeight](#ChainGetTipSetByHeight)
|
|
|
|
* [ChainHasObj](#ChainHasObj)
|
|
|
|
* [ChainHead](#ChainHead)
|
2023-03-03 16:14:52 +00:00
|
|
|
* [ChainHotGC](#ChainHotGC)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ChainNotify](#ChainNotify)
|
2022-08-05 20:34:16 +00:00
|
|
|
* [ChainPrune](#ChainPrune)
|
2022-06-07 03:14:16 +00:00
|
|
|
* [ChainPutObj](#ChainPutObj)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ChainReadObj](#ChainReadObj)
|
|
|
|
* [ChainSetHead](#ChainSetHead)
|
|
|
|
* [ChainStatObj](#ChainStatObj)
|
|
|
|
* [ChainTipSetWeight](#ChainTipSetWeight)
|
|
|
|
* [Client](#Client)
|
|
|
|
* [ClientCalcCommP](#ClientCalcCommP)
|
2020-10-24 01:35:01 +00:00
|
|
|
* [ClientCancelDataTransfer](#ClientCancelDataTransfer)
|
2021-03-24 12:36:21 +00:00
|
|
|
* [ClientCancelRetrievalDeal](#ClientCancelRetrievalDeal)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ClientDataTransferUpdates](#ClientDataTransferUpdates)
|
2020-10-22 11:59:08 +00:00
|
|
|
* [ClientDealPieceCID](#ClientDealPieceCID)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ClientDealSize](#ClientDealSize)
|
2021-11-10 16:51:16 +00:00
|
|
|
* [ClientExport](#ClientExport)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ClientFindData](#ClientFindData)
|
|
|
|
* [ClientGenCar](#ClientGenCar)
|
|
|
|
* [ClientGetDealInfo](#ClientGetDealInfo)
|
2020-10-09 04:25:38 +00:00
|
|
|
* [ClientGetDealStatus](#ClientGetDealStatus)
|
2020-08-28 20:17:35 +00:00
|
|
|
* [ClientGetDealUpdates](#ClientGetDealUpdates)
|
2021-05-27 02:50:34 +00:00
|
|
|
* [ClientGetRetrievalUpdates](#ClientGetRetrievalUpdates)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ClientHasLocal](#ClientHasLocal)
|
|
|
|
* [ClientImport](#ClientImport)
|
|
|
|
* [ClientListDataTransfers](#ClientListDataTransfers)
|
|
|
|
* [ClientListDeals](#ClientListDeals)
|
|
|
|
* [ClientListImports](#ClientListImports)
|
2021-05-27 02:50:34 +00:00
|
|
|
* [ClientListRetrievals](#ClientListRetrievals)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ClientMinerQueryOffer](#ClientMinerQueryOffer)
|
|
|
|
* [ClientQueryAsk](#ClientQueryAsk)
|
|
|
|
* [ClientRemoveImport](#ClientRemoveImport)
|
2020-10-13 10:37:00 +00:00
|
|
|
* [ClientRestartDataTransfer](#ClientRestartDataTransfer)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ClientRetrieve](#ClientRetrieve)
|
2020-09-07 12:35:29 +00:00
|
|
|
* [ClientRetrieveTryRestartInsufficientFunds](#ClientRetrieveTryRestartInsufficientFunds)
|
2021-11-10 17:59:58 +00:00
|
|
|
* [ClientRetrieveWait](#ClientRetrieveWait)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [ClientStartDeal](#ClientStartDeal)
|
2021-04-05 17:15:32 +00:00
|
|
|
* [ClientStatelessDeal](#ClientStatelessDeal)
|
2020-10-01 16:00:24 +00:00
|
|
|
* [Create](#Create)
|
|
|
|
* [CreateBackup](#CreateBackup)
|
2023-01-13 19:11:13 +00:00
|
|
|
* [Eth](#Eth)
|
|
|
|
* [EthAccounts](#EthAccounts)
|
2023-02-15 19:17:00 +00:00
|
|
|
* [EthAddressToFilecoinAddress](#EthAddressToFilecoinAddress)
|
2023-01-13 19:11:13 +00:00
|
|
|
* [EthBlockNumber](#EthBlockNumber)
|
|
|
|
* [EthCall](#EthCall)
|
|
|
|
* [EthChainId](#EthChainId)
|
|
|
|
* [EthEstimateGas](#EthEstimateGas)
|
|
|
|
* [EthFeeHistory](#EthFeeHistory)
|
|
|
|
* [EthGasPrice](#EthGasPrice)
|
|
|
|
* [EthGetBalance](#EthGetBalance)
|
|
|
|
* [EthGetBlockByHash](#EthGetBlockByHash)
|
|
|
|
* [EthGetBlockByNumber](#EthGetBlockByNumber)
|
|
|
|
* [EthGetBlockTransactionCountByHash](#EthGetBlockTransactionCountByHash)
|
|
|
|
* [EthGetBlockTransactionCountByNumber](#EthGetBlockTransactionCountByNumber)
|
|
|
|
* [EthGetCode](#EthGetCode)
|
|
|
|
* [EthGetFilterChanges](#EthGetFilterChanges)
|
|
|
|
* [EthGetFilterLogs](#EthGetFilterLogs)
|
|
|
|
* [EthGetLogs](#EthGetLogs)
|
2023-01-18 22:48:10 +00:00
|
|
|
* [EthGetMessageCidByTransactionHash](#EthGetMessageCidByTransactionHash)
|
2023-01-13 19:11:13 +00:00
|
|
|
* [EthGetStorageAt](#EthGetStorageAt)
|
|
|
|
* [EthGetTransactionByBlockHashAndIndex](#EthGetTransactionByBlockHashAndIndex)
|
|
|
|
* [EthGetTransactionByBlockNumberAndIndex](#EthGetTransactionByBlockNumberAndIndex)
|
|
|
|
* [EthGetTransactionByHash](#EthGetTransactionByHash)
|
2023-03-14 04:59:16 +00:00
|
|
|
* [EthGetTransactionByHashLimited](#EthGetTransactionByHashLimited)
|
2023-01-13 19:11:13 +00:00
|
|
|
* [EthGetTransactionCount](#EthGetTransactionCount)
|
2023-01-04 13:22:41 +00:00
|
|
|
* [EthGetTransactionHashByCid](#EthGetTransactionHashByCid)
|
2023-01-13 19:11:13 +00:00
|
|
|
* [EthGetTransactionReceipt](#EthGetTransactionReceipt)
|
2023-03-14 04:59:16 +00:00
|
|
|
* [EthGetTransactionReceiptLimited](#EthGetTransactionReceiptLimited)
|
2023-01-13 19:11:13 +00:00
|
|
|
* [EthMaxPriorityFeePerGas](#EthMaxPriorityFeePerGas)
|
|
|
|
* [EthNewBlockFilter](#EthNewBlockFilter)
|
|
|
|
* [EthNewFilter](#EthNewFilter)
|
|
|
|
* [EthNewPendingTransactionFilter](#EthNewPendingTransactionFilter)
|
|
|
|
* [EthProtocolVersion](#EthProtocolVersion)
|
|
|
|
* [EthSendRawTransaction](#EthSendRawTransaction)
|
|
|
|
* [EthSubscribe](#EthSubscribe)
|
2023-04-21 12:02:40 +00:00
|
|
|
* [EthSyncing](#EthSyncing)
|
2023-08-22 16:15:14 +00:00
|
|
|
* [EthTraceBlock](#EthTraceBlock)
|
|
|
|
* [EthTraceReplayBlockTransactions](#EthTraceReplayBlockTransactions)
|
2023-01-13 19:11:13 +00:00
|
|
|
* [EthUninstallFilter](#EthUninstallFilter)
|
|
|
|
* [EthUnsubscribe](#EthUnsubscribe)
|
2023-02-24 19:19:52 +00:00
|
|
|
* [Filecoin](#Filecoin)
|
|
|
|
* [FilecoinAddressToEthAddress](#FilecoinAddressToEthAddress)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [Gas](#Gas)
|
|
|
|
* [GasEstimateFeeCap](#GasEstimateFeeCap)
|
|
|
|
* [GasEstimateGasLimit](#GasEstimateGasLimit)
|
|
|
|
* [GasEstimateGasPremium](#GasEstimateGasPremium)
|
|
|
|
* [GasEstimateMessageGas](#GasEstimateMessageGas)
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
* [Get](#Get)
|
2024-03-19 00:37:46 +00:00
|
|
|
* [GetActorEventsRaw](#GetActorEventsRaw)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [I](#I)
|
|
|
|
* [ID](#ID)
|
|
|
|
* [Log](#Log)
|
2021-08-17 13:15:36 +00:00
|
|
|
* [LogAlerts](#LogAlerts)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [LogList](#LogList)
|
|
|
|
* [LogSetLevel](#LogSetLevel)
|
|
|
|
* [Market](#Market)
|
2021-01-06 13:27:28 +00:00
|
|
|
* [MarketAddBalance](#MarketAddBalance)
|
2021-01-07 08:35:30 +00:00
|
|
|
* [MarketGetReserved](#MarketGetReserved)
|
2020-11-11 05:08:23 +00:00
|
|
|
* [MarketReleaseFunds](#MarketReleaseFunds)
|
|
|
|
* [MarketReserveFunds](#MarketReserveFunds)
|
2020-12-03 21:20:50 +00:00
|
|
|
* [MarketWithdraw](#MarketWithdraw)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [Miner](#Miner)
|
|
|
|
* [MinerCreateBlock](#MinerCreateBlock)
|
|
|
|
* [MinerGetBaseInfo](#MinerGetBaseInfo)
|
|
|
|
* [Mpool](#Mpool)
|
2020-10-22 12:46:10 +00:00
|
|
|
* [MpoolBatchPush](#MpoolBatchPush)
|
|
|
|
* [MpoolBatchPushMessage](#MpoolBatchPushMessage)
|
|
|
|
* [MpoolBatchPushUntrusted](#MpoolBatchPushUntrusted)
|
2021-03-27 14:35:46 +00:00
|
|
|
* [MpoolCheckMessages](#MpoolCheckMessages)
|
|
|
|
* [MpoolCheckPendingMessages](#MpoolCheckPendingMessages)
|
|
|
|
* [MpoolCheckReplaceMessages](#MpoolCheckReplaceMessages)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [MpoolClear](#MpoolClear)
|
|
|
|
* [MpoolGetConfig](#MpoolGetConfig)
|
|
|
|
* [MpoolGetNonce](#MpoolGetNonce)
|
|
|
|
* [MpoolPending](#MpoolPending)
|
|
|
|
* [MpoolPush](#MpoolPush)
|
|
|
|
* [MpoolPushMessage](#MpoolPushMessage)
|
2020-10-02 21:14:47 +00:00
|
|
|
* [MpoolPushUntrusted](#MpoolPushUntrusted)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [MpoolSelect](#MpoolSelect)
|
|
|
|
* [MpoolSetConfig](#MpoolSetConfig)
|
|
|
|
* [MpoolSub](#MpoolSub)
|
|
|
|
* [Msig](#Msig)
|
2020-09-06 07:51:06 +00:00
|
|
|
* [MsigAddApprove](#MsigAddApprove)
|
|
|
|
* [MsigAddCancel](#MsigAddCancel)
|
|
|
|
* [MsigAddPropose](#MsigAddPropose)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [MsigApprove](#MsigApprove)
|
2020-10-10 10:28:59 +00:00
|
|
|
* [MsigApproveTxnHash](#MsigApproveTxnHash)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [MsigCancel](#MsigCancel)
|
2021-11-18 23:52:20 +00:00
|
|
|
* [MsigCancelTxnHash](#MsigCancelTxnHash)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [MsigCreate](#MsigCreate)
|
|
|
|
* [MsigGetAvailableBalance](#MsigGetAvailableBalance)
|
2021-02-05 11:34:28 +00:00
|
|
|
* [MsigGetPending](#MsigGetPending)
|
2020-09-06 07:51:06 +00:00
|
|
|
* [MsigGetVested](#MsigGetVested)
|
2020-10-08 19:19:39 +00:00
|
|
|
* [MsigGetVestingSchedule](#MsigGetVestingSchedule)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [MsigPropose](#MsigPropose)
|
2020-10-10 10:28:59 +00:00
|
|
|
* [MsigRemoveSigner](#MsigRemoveSigner)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [MsigSwapApprove](#MsigSwapApprove)
|
|
|
|
* [MsigSwapCancel](#MsigSwapCancel)
|
|
|
|
* [MsigSwapPropose](#MsigSwapPropose)
|
|
|
|
* [Net](#Net)
|
|
|
|
* [NetAddrsListen](#NetAddrsListen)
|
2020-09-03 23:35:53 +00:00
|
|
|
* [NetAgentVersion](#NetAgentVersion)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [NetAutoNatStatus](#NetAutoNatStatus)
|
2020-09-02 23:31:41 +00:00
|
|
|
* [NetBandwidthStats](#NetBandwidthStats)
|
|
|
|
* [NetBandwidthStatsByPeer](#NetBandwidthStatsByPeer)
|
|
|
|
* [NetBandwidthStatsByProtocol](#NetBandwidthStatsByProtocol)
|
2020-11-16 16:52:55 +00:00
|
|
|
* [NetBlockAdd](#NetBlockAdd)
|
|
|
|
* [NetBlockList](#NetBlockList)
|
|
|
|
* [NetBlockRemove](#NetBlockRemove)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [NetConnect](#NetConnect)
|
|
|
|
* [NetConnectedness](#NetConnectedness)
|
|
|
|
* [NetDisconnect](#NetDisconnect)
|
|
|
|
* [NetFindPeer](#NetFindPeer)
|
2022-01-20 09:44:01 +00:00
|
|
|
* [NetLimit](#NetLimit)
|
2023-01-13 19:11:13 +00:00
|
|
|
* [NetListening](#NetListening)
|
2021-03-08 12:23:58 +00:00
|
|
|
* [NetPeerInfo](#NetPeerInfo)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [NetPeers](#NetPeers)
|
2022-02-17 09:10:28 +00:00
|
|
|
* [NetPing](#NetPing)
|
2022-02-03 16:24:49 +00:00
|
|
|
* [NetProtectAdd](#NetProtectAdd)
|
|
|
|
* [NetProtectList](#NetProtectList)
|
|
|
|
* [NetProtectRemove](#NetProtectRemove)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [NetPubsubScores](#NetPubsubScores)
|
2022-01-20 09:44:01 +00:00
|
|
|
* [NetSetLimit](#NetSetLimit)
|
|
|
|
* [NetStat](#NetStat)
|
2023-01-13 19:11:13 +00:00
|
|
|
* [NetVersion](#NetVersion)
|
2021-03-10 17:22:35 +00:00
|
|
|
* [Node](#Node)
|
|
|
|
* [NodeStatus](#NodeStatus)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [Paych](#Paych)
|
|
|
|
* [PaychAllocateLane](#PaychAllocateLane)
|
2020-09-03 23:35:53 +00:00
|
|
|
* [PaychAvailableFunds](#PaychAvailableFunds)
|
2020-09-05 19:51:30 +00:00
|
|
|
* [PaychAvailableFundsByFromTo](#PaychAvailableFundsByFromTo)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [PaychCollect](#PaychCollect)
|
2022-02-14 18:56:02 +00:00
|
|
|
* [PaychFund](#PaychFund)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [PaychGet](#PaychGet)
|
|
|
|
* [PaychGetWaitReady](#PaychGetWaitReady)
|
|
|
|
* [PaychList](#PaychList)
|
|
|
|
* [PaychNewPayment](#PaychNewPayment)
|
|
|
|
* [PaychSettle](#PaychSettle)
|
|
|
|
* [PaychStatus](#PaychStatus)
|
|
|
|
* [PaychVoucherAdd](#PaychVoucherAdd)
|
|
|
|
* [PaychVoucherCheckSpendable](#PaychVoucherCheckSpendable)
|
|
|
|
* [PaychVoucherCheckValid](#PaychVoucherCheckValid)
|
|
|
|
* [PaychVoucherCreate](#PaychVoucherCreate)
|
|
|
|
* [PaychVoucherList](#PaychVoucherList)
|
|
|
|
* [PaychVoucherSubmit](#PaychVoucherSubmit)
|
2022-10-05 19:44:55 +00:00
|
|
|
* [Start](#Start)
|
|
|
|
* [StartTime](#StartTime)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [State](#State)
|
|
|
|
* [StateAccountKey](#StateAccountKey)
|
2022-06-23 18:05:20 +00:00
|
|
|
* [StateActorCodeCIDs](#StateActorCodeCIDs)
|
2022-08-22 21:10:03 +00:00
|
|
|
* [StateActorManifestCID](#StateActorManifestCID)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [StateAllMinerFaults](#StateAllMinerFaults)
|
|
|
|
* [StateCall](#StateCall)
|
|
|
|
* [StateChangedActors](#StateChangedActors)
|
|
|
|
* [StateCirculatingSupply](#StateCirculatingSupply)
|
|
|
|
* [StateCompute](#StateCompute)
|
2022-06-16 11:26:50 +00:00
|
|
|
* [StateComputeDataCID](#StateComputeDataCID)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [StateDealProviderCollateralBounds](#StateDealProviderCollateralBounds)
|
2020-09-29 07:01:52 +00:00
|
|
|
* [StateDecodeParams](#StateDecodeParams)
|
2021-08-20 15:31:01 +00:00
|
|
|
* [StateEncodeParams](#StateEncodeParams)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [StateGetActor](#StateGetActor)
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
* [StateGetAllAllocations](#StateGetAllAllocations)
|
|
|
|
* [StateGetAllClaims](#StateGetAllClaims)
|
2022-10-03 05:51:30 +00:00
|
|
|
* [StateGetAllocation](#StateGetAllocation)
|
2022-10-05 18:43:16 +00:00
|
|
|
* [StateGetAllocationForPendingDeal](#StateGetAllocationForPendingDeal)
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
* [StateGetAllocationIdForPendingDeal](#StateGetAllocationIdForPendingDeal)
|
2022-10-05 22:45:43 +00:00
|
|
|
* [StateGetAllocations](#StateGetAllocations)
|
2021-09-27 01:23:41 +00:00
|
|
|
* [StateGetBeaconEntry](#StateGetBeaconEntry)
|
2022-10-05 22:45:43 +00:00
|
|
|
* [StateGetClaim](#StateGetClaim)
|
|
|
|
* [StateGetClaims](#StateGetClaims)
|
2022-04-24 05:48:07 +00:00
|
|
|
* [StateGetNetworkParams](#StateGetNetworkParams)
|
2023-08-16 15:55:37 +00:00
|
|
|
* [StateGetRandomnessDigestFromBeacon](#StateGetRandomnessDigestFromBeacon)
|
|
|
|
* [StateGetRandomnessDigestFromTickets](#StateGetRandomnessDigestFromTickets)
|
2021-09-12 02:24:53 +00:00
|
|
|
* [StateGetRandomnessFromBeacon](#StateGetRandomnessFromBeacon)
|
|
|
|
* [StateGetRandomnessFromTickets](#StateGetRandomnessFromTickets)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [StateListActors](#StateListActors)
|
|
|
|
* [StateListMessages](#StateListMessages)
|
|
|
|
* [StateListMiners](#StateListMiners)
|
|
|
|
* [StateLookupID](#StateLookupID)
|
2022-04-14 21:30:07 +00:00
|
|
|
* [StateLookupRobustAddress](#StateLookupRobustAddress)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [StateMarketBalance](#StateMarketBalance)
|
|
|
|
* [StateMarketDeals](#StateMarketDeals)
|
|
|
|
* [StateMarketParticipants](#StateMarketParticipants)
|
|
|
|
* [StateMarketStorageDeal](#StateMarketStorageDeal)
|
|
|
|
* [StateMinerActiveSectors](#StateMinerActiveSectors)
|
2022-08-22 18:41:56 +00:00
|
|
|
* [StateMinerAllocated](#StateMinerAllocated)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [StateMinerAvailableBalance](#StateMinerAvailableBalance)
|
|
|
|
* [StateMinerDeadlines](#StateMinerDeadlines)
|
|
|
|
* [StateMinerFaults](#StateMinerFaults)
|
|
|
|
* [StateMinerInfo](#StateMinerInfo)
|
|
|
|
* [StateMinerInitialPledgeCollateral](#StateMinerInitialPledgeCollateral)
|
|
|
|
* [StateMinerPartitions](#StateMinerPartitions)
|
|
|
|
* [StateMinerPower](#StateMinerPower)
|
|
|
|
* [StateMinerPreCommitDepositForPower](#StateMinerPreCommitDepositForPower)
|
|
|
|
* [StateMinerProvingDeadline](#StateMinerProvingDeadline)
|
|
|
|
* [StateMinerRecoveries](#StateMinerRecoveries)
|
2020-10-18 18:10:39 +00:00
|
|
|
* [StateMinerSectorAllocated](#StateMinerSectorAllocated)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [StateMinerSectorCount](#StateMinerSectorCount)
|
|
|
|
* [StateMinerSectors](#StateMinerSectors)
|
|
|
|
* [StateNetworkName](#StateNetworkName)
|
2020-09-17 15:31:09 +00:00
|
|
|
* [StateNetworkVersion](#StateNetworkVersion)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [StateReadState](#StateReadState)
|
|
|
|
* [StateReplay](#StateReplay)
|
|
|
|
* [StateSearchMsg](#StateSearchMsg)
|
|
|
|
* [StateSectorExpiration](#StateSectorExpiration)
|
|
|
|
* [StateSectorGetInfo](#StateSectorGetInfo)
|
|
|
|
* [StateSectorPartition](#StateSectorPartition)
|
|
|
|
* [StateSectorPreCommitInfo](#StateSectorPreCommitInfo)
|
2020-10-12 20:41:27 +00:00
|
|
|
* [StateVMCirculatingSupplyInternal](#StateVMCirculatingSupplyInternal)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [StateVerifiedClientStatus](#StateVerifiedClientStatus)
|
2020-10-01 07:14:59 +00:00
|
|
|
* [StateVerifiedRegistryRootKey](#StateVerifiedRegistryRootKey)
|
|
|
|
* [StateVerifierStatus](#StateVerifierStatus)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [StateWaitMsg](#StateWaitMsg)
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
* [Subscribe](#Subscribe)
|
2024-03-19 00:37:46 +00:00
|
|
|
* [SubscribeActorEventsRaw](#SubscribeActorEventsRaw)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [Sync](#Sync)
|
|
|
|
* [SyncCheckBad](#SyncCheckBad)
|
2020-09-09 07:45:47 +00:00
|
|
|
* [SyncCheckpoint](#SyncCheckpoint)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [SyncIncomingBlocks](#SyncIncomingBlocks)
|
|
|
|
* [SyncMarkBad](#SyncMarkBad)
|
|
|
|
* [SyncState](#SyncState)
|
|
|
|
* [SyncSubmitBlock](#SyncSubmitBlock)
|
2020-10-10 18:46:06 +00:00
|
|
|
* [SyncUnmarkAllBad](#SyncUnmarkAllBad)
|
2020-09-09 07:45:47 +00:00
|
|
|
* [SyncUnmarkBad](#SyncUnmarkBad)
|
2020-09-27 22:08:58 +00:00
|
|
|
* [SyncValidateTipset](#SyncValidateTipset)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [Wallet](#Wallet)
|
|
|
|
* [WalletBalance](#WalletBalance)
|
|
|
|
* [WalletDefaultAddress](#WalletDefaultAddress)
|
|
|
|
* [WalletDelete](#WalletDelete)
|
|
|
|
* [WalletExport](#WalletExport)
|
|
|
|
* [WalletHas](#WalletHas)
|
|
|
|
* [WalletImport](#WalletImport)
|
|
|
|
* [WalletList](#WalletList)
|
|
|
|
* [WalletNew](#WalletNew)
|
|
|
|
* [WalletSetDefault](#WalletSetDefault)
|
|
|
|
* [WalletSign](#WalletSign)
|
|
|
|
* [WalletSignMessage](#WalletSignMessage)
|
2020-09-30 05:45:03 +00:00
|
|
|
* [WalletValidateAddress](#WalletValidateAddress)
|
2020-08-24 10:25:49 +00:00
|
|
|
* [WalletVerify](#WalletVerify)
|
2023-01-25 03:56:04 +00:00
|
|
|
* [Web3](#Web3)
|
|
|
|
* [Web3ClientVersion](#Web3ClientVersion)
|
2020-08-24 10:25:49 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
|
|
|
|
### Closing
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
OpenRPC Support (#5843)
* main: init implement rpc.Discover RPC method
This implement the basic functionality for the method
over HTTP RPC.
Signed-off-by: meows <b5c6@protonmail.com>
* main,go.mod,go.sum: init example with go-openrpc-reflect lib
Signed-off-by: meows <b5c6@protonmail.com>
Conflicts:
go.mod
go.sum
* main: make variable name human-friendly
Signed-off-by: meows <b5c6@protonmail.com>
* main,go.mod,go.sum: init impl of go-openrp-reflect printing document
Signed-off-by: meows <b5c6@protonmail.com>
Conflicts:
go.mod
go.sum
* go.mod,go.sum: use go-openrpc-reflect and open-rpc/meta-schema hackforks
This is for development only.
Versions need to be bumped when they're ready for use
as canonical remotes.
Signed-off-by: meows <b5c6@protonmail.com>
* main,openrpc,main: refactor openrpc supporting code to own package
This eliminates code duplication.
Signed-off-by: meows <b5c6@protonmail.com>
* main: add rpc.Discover to openrpc document
Signed-off-by: meows <b5c6@protonmail.com>
* openrpc: fix rpc.discover method name casing
Also fixes casing stuff for the rest of Filecoin.
methods.
Signed-off-by: meows <b5c6@protonmail.com>
* Revert "main: add rpc.Discover to openrpc document"
This reverts commit 116898efb10f33e405ac74acb1aa6daefcd46a62.
* main: fix document creation method name
This fixes an issue caused with the latest reverting
commit.
Signed-off-by: meows <b5c6@protonmail.com>
* main,docgen,openrpc: refactor to share api parsing, etc as docgen exported stuff
Signed-off-by: meows <b5c6@protonmail.com>
Makefile: fix docgen refactoring for makefile use of command
Signed-off-by: meows <b5c6@protonmail.com>
* openrpc: add schema.examples to app reflector
There are quite of few of these already registered
for the docgen command, so it makes sense to use
those!
Signed-off-by: meows <b5c6@protonmail.com>
* openrpc: init method pairing examples
Signed-off-by: meows <b5c6@protonmail.com>
* go.mod,go.sum: bump go.mod to use latest meta-schema and openrpc-reflect versions
Signed-off-by: meows <b5c6@protonmail.com>
* openrpc: init SchemaType mapper function
This function will handle the manual configurations
for app-specific data types w/r/t their json schema
representation.
This is useful for cases where the reflect library
is unable to provide a sufficient representation
automatically.
Provided in this commit is an initial implementation
for the integerD type (assuming number are represented
in the API as hexs), and a commonly used cid.Cid type.
Signed-off-by: meows <b5c6@protonmail.com>
* go.mod,go.sum: tame dependencies by bumping etclabscore/go-openrpc-reflect
This removes a problematic dependency
on github.com/ethereum/go-ethereum, which was
imported as a dependency for a couple github.com/etclabscore/go-openrpc-reflect
tests.
etclabscore/go-openrpc-reflect v0.0.36 has removed this
dependency, so this commit is the result of bumping
that version and then running 'go mod tidy'
This is in response to a review at
https://github.com/filecoin-project/lotus/pull/4711#pullrequestreview-535686205
Date: 2020-11-21 06:52:48-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* main: add 'miner' arg to openrpc gen cmd
This allows the command to EITHER
generate the doc for Full or Miner APIs.
See comment for usage.
Date: 2020-11-21 07:48:05-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* docgen: add missing examples for Miner API
Generating the Miner API OpenRPC doc
(via 'go run ./api/openrpc/cmd miner') caused
the example logic to panic because some types
were missing.
This commit adds those missing types, although
I'm not an expert in the API so I can't
suggest that the example values provided are
ideal or well representative.
Date: 2020-11-21 07:50:21-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* build/openrpc/full.json,build/openrpc/miner.json: add build/openrpc/[full/miner].json docs
These will be used as static documents
provided by the rpc.discover method.
Date: 2020-11-21 07:51:39-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* build: init go-rice openrpc static assets
Date: 2020-11-21 08:23:06-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* main: remove rpc.discover implementation from runtime plugin
Instead of generating the doc on the fly,
we're going to serve a static asset.
Rel https://github.com/filecoin-project/lotus/pull/4711#pullrequestreview-535686205
This removes the runtime implementation from the
RPC server construction.
Date: 2020-11-21 08:41:20-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api,apistruct,common: add Discover(ctx) method to CommonAPI interface and structs
Date: 2020-11-21 08:41:56-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* main: use rpc server method aliasing for rpc.discover
This depends on a currently-forked change at
filecoin-project/go-jsonrpc 8350f9463ee451b187d35c492e32f1b999e80210
which establishes this new method RPCServer.AliasMethod.
This solves the problem that the OpenRPC
spec says that the document should be served
at the system extension-prefixed endpoing
rpc.discover (not Filecoin.Discover).
In fact, the document will be available at BOTH
endpoints, but that duplicity is harmless.
Date: 2020-11-21 09:18:26-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api,apistruct,build,common: rpc.discover: return json object instead of string
Instead of casting the JSON asset from bytes to string,
unmarshal it to a map[string]interface{} so the
server will provide it as a JSON object.
Date: 2020-11-21 09:27:11-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* Makefile: merge resolve: docsgen command path
Date: 2020-11-22 07:19:36-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* apistruct,main,docgen,openrpc: merge resolve: fix func exporteds, signatures
Date: 2020-11-22 07:31:03-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* go.mod,go.sum: 'get get' auto-bumps version
Date: 2020-11-22 07:31:44-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* Makefile,docgen,main,build/openrpc: refactor openrpc documentation generation
This creates Makefile command docsgen-openrpc-json,
and refactors the docsgen command to generate both
the markdown and openrpc json documents, redirecting
the output of the openrpc json documentation to
the build/openrpc/ directory, where those json
files will be compiled as static assets via go-rice
boxes.
The api/openrpc/cmd now uses usage argumentation
congruent to that of the docgen command (switching
on API context).
Date: 2020-11-22 08:01:18-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* main,docgen_openrpc: rename api/openrpc -> api/docgen-openrpc
Renames the package as well.
This is intended to parallel the
existing docgen package and command
namespacing.
Date: 2020-11-22 10:34:46-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api,apistruct,docgen,build,build/openrpc: use typed Discover response
Instead of using a map[string]interface{}, use
a typed response for the Discover method implementation.
This avoids having to set a docgen Example for
the generic map[string]interface{} (as an openrpc document)
which both pollutes the generic type and lacks
useful information for the Discover method example.
Date: 2020-11-22 08:31:16-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* apistruct,build,main,impl: implement Discover method for Worker and StorageMiner APIs
Methods return static compiled assets respective
to the APIs.
Date: 2020-11-22 08:57:18-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* docgen_openrpc,build/openrpc: remove timestamping from openrpc doc info
This should allow openrpc docs generated at different
times to be equal. This is important because the CI
(Circle) runs the docgen command and tests that
the output and the source are unchanged (via git diff).
Date: 2020-11-22 10:47:07-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* main,docgen_openrpc,main,build: fix lint issues
Fixes goimports, staticcheck, golint issues.
Date: 2020-11-22 11:06:46-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* docgenopenrpc: fix: don't use an underscore in package name (golint)
Date: 2020-11-22 11:07:53-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* go.sum: fix: mod-tidy-check (run 'go mod tidy')
Date: 2020-11-22 11:09:48-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* go.mod,go.sum: bump filecoin-project/go-jsonrpc dep to latest
This version includes the necessary RPCServer.AliasMethod
method.
Date: 2020-11-23 12:16:15-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* Makefile,main,build,build/openrpc: init gzipped openrpc static docs
Date: 2020-11-24 06:15:06-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* build: refactor gzip reading
Date: 2020-11-24 06:18:34-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* build: add basic test for openrpc doc from static assets
Date: 2020-11-24 06:30:23-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* build: handle reader Close error
This keeps the errcheck linter happy.
Date: 2020-11-24 06:33:14-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* go.sum: run 'go mod tidy'
Date: 2020-11-24 06:36:07-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* go.mod,go.sum: go mod tidy
Tidying up after resolving the merge conflicts
with master at go.mod
Date: 2020-11-24 06:40:45-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* go.mod,go.sum: bump filecoin-project/go-jsonrpc to latest
This is a repeat of 76e6fd2, since the latest merge
to master seems to have reverted this.
Date: 2020-11-24 06:42:30-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* docgenopenrpc,build/openrpc: remove method example pairings, improve schema examples
Removing method example pairings since they were
redundant to schema examples and were not
implemented well.
Improved schema examples by using the ExampleValue
method instead of the map lookup.
Made a note in the comment here that this is
not ideal, since we have to make a shortcut assumption
/workaround by using 'unknown' as the method name
and the typea as its own parent.
Luckily these values aren't heavily used by the
method logic.
Date: 2020-11-27 12:57:36-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* docgenopenrpc: use generic number jsonschema for number types
Previously used an integer schema assuming
hex encoding. It appears, based on review some
of the examples, that this may not be the case.
Obvioussly this schema could be more descriptive,
but just shooting for mostly likely to be
not wrong at this point.
Date: 2020-12-15 14:44:37-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* cmd/lotus,go.mod,go.sum: maybe fix straggling merge resolution conflicts
Date: 2021-01-19 12:30:42-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* build/openrpc/full.json.gz,build/openrpc/miner.json.gz,build/openrpc/worker.json.gz: run 'make docsgen'
Date: 2021-01-19 12:33:55-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api/apistruct,node/impl: (lint) gofmt
Date: 2021-01-19 12:39:48-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api/docgen: maybe fix parse error: open ./api: no such file or directory
Date: 2021-01-19 12:52:04-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api/docgen,build/openrpc: maybe fix no such file error and run 'make docsgen'
Date: 2021-01-19 12:55:52-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api/docgen: return if AST comment/groupdoc parsing encounters any error
This will returns empty comments/docs maps.
This should fix issues like:
https://app.circleci.com/pipelines/github/filecoin-project/lotus/12445/workflows/4ebadce9-a298-4ad1-939b-f19ef4c0a5bf/jobs/107218
where the environment makes file lookups hard or
impossible.
Date: 2021-01-19 13:04:58-06:00
Signed-off-by: meows <b5c6@protonmail.com>
* api: Don't depend on build/
* make: support parallel docsgen
* openrpc gen: Use simple build version
* methodgen
* goimports
Co-authored-by: meows <b5c6@protonmail.com>
2021-03-19 18:22:46 +00:00
|
|
|
### Discover
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"info": {
|
|
|
|
"title": "Lotus RPC API",
|
|
|
|
"version": "1.2.1/generated=2020-11-22T08:22:42-06:00"
|
|
|
|
},
|
|
|
|
"methods": [],
|
|
|
|
"openrpc": "1.2.6"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-10-18 18:10:39 +00:00
|
|
|
### Session
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `"07070707-0707-0707-0707-070707070707"`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### Shutdown
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### Version
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Version": "string value",
|
2023-03-06 15:37:28 +00:00
|
|
|
"APIVersion": 131840,
|
2022-12-23 17:52:49 +00:00
|
|
|
"BlockDelay": 42
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Auth
|
|
|
|
|
|
|
|
|
|
|
|
### AuthNew
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2021-12-28 02:38:12 +00:00
|
|
|
[
|
|
|
|
"write"
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"Ynl0ZSBhcnJheQ=="`
|
|
|
|
|
|
|
|
### AuthVerify
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"write"
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
## Chain
|
|
|
|
The Chain method group contains methods for interacting with the
|
|
|
|
blockchain, but that do not require any form of state computation.
|
|
|
|
|
|
|
|
|
2021-07-26 05:33:25 +00:00
|
|
|
### ChainBlockstoreInfo
|
|
|
|
ChainBlockstoreInfo returns some basic information about the blockstore
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"abc": 123
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-07-25 08:25:29 +00:00
|
|
|
### ChainCheckBlockstore
|
|
|
|
ChainCheckBlockstore performs an (asynchronous) health check on the chain/state blockstore
|
|
|
|
if supported by the underlying implementation.
|
|
|
|
|
|
|
|
|
2021-07-26 09:15:01 +00:00
|
|
|
Perms: admin
|
2021-07-25 08:25:29 +00:00
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-09-10 17:47:19 +00:00
|
|
|
### ChainDeleteObj
|
|
|
|
ChainDeleteObj deletes node referenced by the given CID
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### ChainExport
|
|
|
|
ChainExport returns a stream of bytes with CAR dump of chain data.
|
2020-09-02 12:57:44 +00:00
|
|
|
The exported chain data includes the header chain from the given tipset
|
|
|
|
back to genesis, the entire genesis state, and the most recent 'nroots'
|
|
|
|
state trees.
|
2020-09-11 08:55:10 +00:00
|
|
|
If oldmsgskip is set, messages from before the requested roots are also not included.
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-09-02 12:57:44 +00:00
|
|
|
10101,
|
2020-09-11 08:55:10 +00:00
|
|
|
true,
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"Ynl0ZSBhcnJheQ=="`
|
|
|
|
|
2022-08-20 00:41:03 +00:00
|
|
|
### ChainExportRangeInternal
|
2023-02-14 16:44:04 +00:00
|
|
|
ChainExportRangeInternal triggers the export of a chain
|
|
|
|
CAR-snapshot directly to disk. It is similar to ChainExport,
|
|
|
|
except, depending on options, the snapshot can include receipts,
|
|
|
|
messages and stateroots for the length between the specified head
|
|
|
|
and tail, thus producing "archival-grade" snapshots that include
|
|
|
|
all the on-chain data. The header chain is included back to
|
|
|
|
genesis and these snapshots can be used to initialize Filecoin
|
|
|
|
nodes.
|
2022-08-20 00:41:03 +00:00
|
|
|
|
|
|
|
|
2023-02-14 16:44:04 +00:00
|
|
|
Perms: admin
|
2022-08-20 00:41:03 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
{
|
|
|
|
"WriteBufferSize": 123,
|
2023-02-14 16:44:04 +00:00
|
|
|
"NumWorkers": 123,
|
2022-08-20 00:41:03 +00:00
|
|
|
"IncludeMessages": true,
|
|
|
|
"IncludeReceipts": true,
|
|
|
|
"IncludeStateRoots": true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### ChainGetBlock
|
|
|
|
ChainGetBlock returns the block specified by the given CID.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2020-10-06 07:30:40 +00:00
|
|
|
"Miner": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Ticket": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"VRFProof": "Ynl0ZSBhcnJheQ=="
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ElectionProof": {
|
|
|
|
"WinCount": 9,
|
|
|
|
"VRFProof": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"BeaconEntries": [
|
|
|
|
{
|
|
|
|
"Round": 42,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"WinPoStProof": [
|
|
|
|
{
|
|
|
|
"PoStProof": 8,
|
|
|
|
"ProofBytes": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
],
|
2021-12-28 02:38:12 +00:00
|
|
|
"Parents": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"ParentWeight": "0",
|
|
|
|
"Height": 10101,
|
2022-12-23 17:52:49 +00:00
|
|
|
"ParentStateRoot": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"ParentMessageReceipts": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"Messages": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"BLSAggregate": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"Timestamp": 42,
|
2022-12-23 17:52:49 +00:00
|
|
|
"BlockSig": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"ForkSignaling": 42,
|
2020-08-24 10:25:49 +00:00
|
|
|
"ParentBaseFee": "0"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### ChainGetBlockMessages
|
|
|
|
ChainGetBlockMessages returns messages stored in the specified block.
|
|
|
|
|
2021-03-18 21:12:22 +00:00
|
|
|
Note: If there are multiple blocks in a tipset, it's likely that some
|
|
|
|
messages will be duplicated. It's also possible for blocks in a tipset to have
|
|
|
|
different messages from the same sender at the same nonce. When that happens,
|
|
|
|
only the first message (in a block with lowest ticket) will be considered
|
|
|
|
for execution
|
|
|
|
|
|
|
|
NOTE: THIS METHOD SHOULD ONLY BE USED FOR GETTING MESSAGES IN A SPECIFIC BLOCK
|
|
|
|
|
|
|
|
DO NOT USE THIS METHOD TO GET MESSAGES INCLUDED IN A TIPSET
|
|
|
|
Use ChainGetParentMessages, which will perform correct message deduplication
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"BlsMessages": [
|
|
|
|
{
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
|
|
|
"GasLimit": 9,
|
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"SecpkMessages": [
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
|
|
|
"GasLimit": 9,
|
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"CID": {
|
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
2021-12-28 02:38:12 +00:00
|
|
|
"Cids": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### ChainGetEvents
|
|
|
|
ChainGetEvents returns the events under an event AMT root CID.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Emitter": 1000,
|
|
|
|
"Entries": [
|
|
|
|
{
|
|
|
|
"Flags": 7,
|
|
|
|
"Key": "string value",
|
2023-02-07 21:43:18 +00:00
|
|
|
"Codec": 42,
|
2023-01-13 19:11:13 +00:00
|
|
|
"Value": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### ChainGetGenesis
|
|
|
|
ChainGetGenesis returns the genesis tipset.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Cids": null,
|
|
|
|
"Blocks": null,
|
|
|
|
"Height": 0
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### ChainGetMessage
|
|
|
|
ChainGetMessage reads a message referenced by the specified CID from the
|
|
|
|
chain blockstore.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-07-01 03:20:22 +00:00
|
|
|
### ChainGetMessagesInTipset
|
|
|
|
ChainGetMessagesInTipset returns message stores in current tipset
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Cid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2021-07-01 03:20:22 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### ChainGetNode
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Cid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Obj": {}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### ChainGetParentMessages
|
|
|
|
ChainGetParentMessages returns messages stored in parent tipset of the
|
|
|
|
specified block.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Cid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### ChainGetParentReceipts
|
|
|
|
ChainGetParentReceipts returns receipts for messages in parent tipset of
|
2021-03-18 18:35:32 +00:00
|
|
|
the specified block. The receipts in the list returned is one-to-one with the
|
|
|
|
messages returned by a call to ChainGetParentMessages with the same blockCid.
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"ExitCode": 0,
|
|
|
|
"Return": "Ynl0ZSBhcnJheQ==",
|
2023-01-13 19:11:13 +00:00
|
|
|
"GasUsed": 9,
|
|
|
|
"EventsRoot": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### ChainGetPath
|
|
|
|
ChainGetPath returns a set of revert/apply operations needed to get from
|
|
|
|
one tipset to another, for example:
|
|
|
|
```
|
|
|
|
to
|
|
|
|
^
|
|
|
|
from tAA
|
|
|
|
^ ^
|
|
|
|
tBA tAB
|
|
|
|
^---*--^
|
|
|
|
^
|
|
|
|
tRR
|
|
|
|
```
|
|
|
|
Would return `[revert(tBA), apply(tAB), apply(tAA)]`
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Type": "string value",
|
|
|
|
"Val": {
|
|
|
|
"Cids": null,
|
|
|
|
"Blocks": null,
|
|
|
|
"Height": 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### ChainGetTipSet
|
|
|
|
ChainGetTipSet returns the tipset specified by the given TipSetKey.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Cids": null,
|
|
|
|
"Blocks": null,
|
|
|
|
"Height": 0
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-08-05 17:53:12 +00:00
|
|
|
### ChainGetTipSetAfterHeight
|
|
|
|
ChainGetTipSetAfterHeight looks back for a tipset at the specified epoch.
|
|
|
|
If there are no blocks at the specified epoch, the first non-nil tipset at a later epoch
|
|
|
|
will be returned.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
10101,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Cids": null,
|
|
|
|
"Blocks": null,
|
|
|
|
"Height": 0
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### ChainGetTipSetByHeight
|
|
|
|
ChainGetTipSetByHeight looks back for a tipset at the specified epoch.
|
|
|
|
If there are no blocks at the specified epoch, a tipset at an earlier epoch
|
|
|
|
will be returned.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
10101,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Cids": null,
|
|
|
|
"Blocks": null,
|
|
|
|
"Height": 0
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### ChainHasObj
|
|
|
|
ChainHasObj checks if a given CID exists in the chain blockstore.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `true`
|
|
|
|
|
|
|
|
### ChainHead
|
|
|
|
ChainHead returns the current head of the chain.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Cids": null,
|
|
|
|
"Blocks": null,
|
|
|
|
"Height": 0
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-03-03 16:14:52 +00:00
|
|
|
### ChainHotGC
|
|
|
|
ChainHotGC does online (badger) GC on the hot store; only supported if you are using
|
|
|
|
the splitstore
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Threshold": 12.3,
|
2023-03-06 19:05:04 +00:00
|
|
|
"Periodic": true,
|
|
|
|
"Moving": true
|
2023-03-03 16:14:52 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### ChainNotify
|
|
|
|
ChainNotify returns channel with chain head updates.
|
|
|
|
First message is guaranteed to be of len == 1, and type == 'current'.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Type": "string value",
|
|
|
|
"Val": {
|
|
|
|
"Cids": null,
|
|
|
|
"Blocks": null,
|
|
|
|
"Height": 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2022-08-05 20:34:16 +00:00
|
|
|
### ChainPrune
|
2023-03-03 16:14:52 +00:00
|
|
|
ChainPrune forces compaction on cold store and garbage collects; only supported if you
|
2022-08-05 20:34:16 +00:00
|
|
|
are using the splitstore
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"MovingGC": true,
|
|
|
|
"RetainState": 9
|
2022-08-05 20:34:16 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2022-06-07 03:14:16 +00:00
|
|
|
### ChainPutObj
|
|
|
|
ChainPutObj puts a given object into the block store
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### ChainReadObj
|
|
|
|
ChainReadObj reads ipld nodes referenced by the specified CID from chain
|
|
|
|
blockstore and returns raw bytes.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"Ynl0ZSBhcnJheQ=="`
|
|
|
|
|
|
|
|
### ChainSetHead
|
|
|
|
ChainSetHead forcefully sets current chain head. Use with caution.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### ChainStatObj
|
|
|
|
ChainStatObj returns statistics about the graph referenced by 'obj'.
|
|
|
|
If 'base' is also specified, then the returned stat will be a diff
|
|
|
|
between the two objects.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Size": 42,
|
|
|
|
"Links": 42
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### ChainTipSetWeight
|
|
|
|
ChainTipSetWeight computes weight for the specified tipset.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
|
|
|
## Client
|
|
|
|
The Client methods all have to do with interacting with the storage and
|
|
|
|
retrieval markets as a client
|
|
|
|
|
|
|
|
|
|
|
|
### ClientCalcCommP
|
|
|
|
ClientCalcCommP calculates the CommP for a specified file
|
|
|
|
|
|
|
|
|
2021-03-23 12:42:56 +00:00
|
|
|
Perms: write
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Size": 1024
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-10-24 01:35:01 +00:00
|
|
|
### ClientCancelDataTransfer
|
|
|
|
ClientCancelDataTransfer cancels a data transfer with the given transfer ID and other peer
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
3,
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
true
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2021-03-24 12:36:21 +00:00
|
|
|
### ClientCancelRetrievalDeal
|
|
|
|
ClientCancelRetrievalDeal cancels an ongoing retrieval deal based on DealID
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
5
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### ClientDataTransferUpdates
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"TransferID": 3,
|
2020-08-24 10:25:49 +00:00
|
|
|
"Status": 1,
|
2022-12-23 17:52:49 +00:00
|
|
|
"BaseCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"IsInitiator": true,
|
|
|
|
"IsSender": true,
|
2020-08-24 10:25:49 +00:00
|
|
|
"Voucher": "string value",
|
|
|
|
"Message": "string value",
|
2022-12-23 17:52:49 +00:00
|
|
|
"OtherPeer": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
2021-03-29 15:32:09 +00:00
|
|
|
"Transferred": 42,
|
|
|
|
"Stages": {
|
2021-12-28 02:38:12 +00:00
|
|
|
"Stages": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"Description": "string value",
|
|
|
|
"CreatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"Logs": [
|
|
|
|
{
|
|
|
|
"Log": "string value",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2021-03-29 15:32:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-10-22 11:59:08 +00:00
|
|
|
### ClientDealPieceCID
|
|
|
|
ClientCalcCommP calculates the CommP and data size of the specified CID
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"PayloadSize": 9,
|
|
|
|
"PieceSize": 1032,
|
|
|
|
"PieceCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2020-10-22 11:59:08 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### ClientDealSize
|
|
|
|
ClientDealSize calculates real deal data size
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"PayloadSize": 9,
|
|
|
|
"PieceSize": 1032
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-11-10 16:51:16 +00:00
|
|
|
### ClientExport
|
|
|
|
ClientExport exports a file stored in the local filestore to a system file
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"DAGs": [
|
|
|
|
{
|
|
|
|
"DataSelector": "Links/21/Hash/Links/42/Hash",
|
|
|
|
"ExportMerkleProof": true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"FromLocalCAR": "string value",
|
|
|
|
"DealID": 5
|
2021-11-10 16:51:16 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"Path": "string value",
|
2022-12-23 17:52:49 +00:00
|
|
|
"IsCAR": true
|
2021-11-10 16:51:16 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### ClientFindData
|
|
|
|
ClientFindData identifies peers that have a certain file, and returns QueryOffers (one per peer).
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2023-01-13 19:11:13 +00:00
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Err": "string value",
|
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2023-01-13 19:11:13 +00:00
|
|
|
"Piece": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2021-12-28 02:38:12 +00:00
|
|
|
"Size": 42,
|
|
|
|
"MinPrice": "0",
|
|
|
|
"UnsealPrice": "0",
|
|
|
|
"PricePerByte": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"PaymentInterval": 42,
|
|
|
|
"PaymentIntervalIncrease": 42,
|
2021-12-28 02:38:12 +00:00
|
|
|
"Miner": "f01234",
|
|
|
|
"MinerPeer": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"Address": "f01234",
|
|
|
|
"ID": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
2023-01-13 19:11:13 +00:00
|
|
|
"PieceCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### ClientGenCar
|
|
|
|
ClientGenCar generates a CAR file for the specified file.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Path": "string value",
|
2022-12-23 17:52:49 +00:00
|
|
|
"IsCAR": true
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### ClientGetDealInfo
|
|
|
|
ClientGetDealInfo returns the latest information about a given deal.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ProposalCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"State": 42,
|
|
|
|
"Message": "string value",
|
2022-12-23 17:52:49 +00:00
|
|
|
"DealStages": {
|
|
|
|
"Stages": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"Description": "string value",
|
|
|
|
"ExpectedDuration": "string value",
|
|
|
|
"CreatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"Logs": [
|
|
|
|
{
|
|
|
|
"Log": "string value",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-10-06 07:30:40 +00:00
|
|
|
"Provider": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"DataRef": {
|
|
|
|
"TransferType": "string value",
|
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2023-01-13 19:11:13 +00:00
|
|
|
"PieceCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"PieceSize": 1024,
|
|
|
|
"RawBlockSize": 42
|
|
|
|
},
|
|
|
|
"PieceCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"Size": 42,
|
|
|
|
"PricePerEpoch": "0",
|
|
|
|
"Duration": 42,
|
2022-12-23 17:52:49 +00:00
|
|
|
"DealID": 5432,
|
2020-10-03 07:41:01 +00:00
|
|
|
"CreationTime": "0001-01-01T00:00:00Z",
|
2020-12-08 14:18:47 +00:00
|
|
|
"Verified": true,
|
2022-12-23 17:52:49 +00:00
|
|
|
"TransferChannelID": {
|
|
|
|
"Initiator": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"Responder": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"ID": 3
|
|
|
|
},
|
|
|
|
"DataTransfer": {
|
|
|
|
"TransferID": 3,
|
|
|
|
"Status": 1,
|
|
|
|
"BaseCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"IsInitiator": true,
|
|
|
|
"IsSender": true,
|
|
|
|
"Voucher": "string value",
|
|
|
|
"Message": "string value",
|
|
|
|
"OtherPeer": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"Transferred": 42,
|
|
|
|
"Stages": {
|
|
|
|
"Stages": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"Description": "string value",
|
|
|
|
"CreatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"Logs": [
|
|
|
|
{
|
|
|
|
"Log": "string value",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-10-09 04:25:38 +00:00
|
|
|
### ClientGetDealStatus
|
|
|
|
ClientGetDealStatus returns status given a code
|
|
|
|
|
|
|
|
|
2020-10-22 12:15:11 +00:00
|
|
|
Perms: read
|
2020-10-09 04:25:38 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
42
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"string value"`
|
|
|
|
|
2020-08-28 20:17:35 +00:00
|
|
|
### ClientGetDealUpdates
|
|
|
|
ClientGetDealUpdates returns the status of updated deals
|
|
|
|
|
|
|
|
|
2021-03-23 12:42:56 +00:00
|
|
|
Perms: write
|
2020-08-28 20:17:35 +00:00
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ProposalCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-08-28 20:17:35 +00:00
|
|
|
"State": 42,
|
|
|
|
"Message": "string value",
|
2022-12-23 17:52:49 +00:00
|
|
|
"DealStages": {
|
|
|
|
"Stages": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"Description": "string value",
|
|
|
|
"ExpectedDuration": "string value",
|
|
|
|
"CreatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"Logs": [
|
|
|
|
{
|
|
|
|
"Log": "string value",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-10-06 07:30:40 +00:00
|
|
|
"Provider": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"DataRef": {
|
|
|
|
"TransferType": "string value",
|
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2023-01-13 19:11:13 +00:00
|
|
|
"PieceCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"PieceSize": 1024,
|
|
|
|
"RawBlockSize": 42
|
|
|
|
},
|
|
|
|
"PieceCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-08-28 20:17:35 +00:00
|
|
|
"Size": 42,
|
2022-12-23 17:52:49 +00:00
|
|
|
"PricePerEpoch": "0",
|
2020-08-28 20:17:35 +00:00
|
|
|
"Duration": 42,
|
2022-12-23 17:52:49 +00:00
|
|
|
"DealID": 5432,
|
2020-10-03 07:41:01 +00:00
|
|
|
"CreationTime": "0001-01-01T00:00:00Z",
|
2020-12-08 14:18:47 +00:00
|
|
|
"Verified": true,
|
2022-12-23 17:52:49 +00:00
|
|
|
"TransferChannelID": {
|
|
|
|
"Initiator": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"Responder": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"ID": 3
|
|
|
|
},
|
|
|
|
"DataTransfer": {
|
|
|
|
"TransferID": 3,
|
|
|
|
"Status": 1,
|
|
|
|
"BaseCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"IsInitiator": true,
|
|
|
|
"IsSender": true,
|
|
|
|
"Voucher": "string value",
|
|
|
|
"Message": "string value",
|
|
|
|
"OtherPeer": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"Transferred": 42,
|
|
|
|
"Stages": {
|
|
|
|
"Stages": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"Description": "string value",
|
|
|
|
"CreatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"Logs": [
|
|
|
|
{
|
|
|
|
"Log": "string value",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2020-08-28 20:17:35 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-05-27 02:50:34 +00:00
|
|
|
### ClientGetRetrievalUpdates
|
|
|
|
ClientGetRetrievalUpdates returns status of updated retrieval deals
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"PayloadCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"ID": 5,
|
2023-01-13 19:11:13 +00:00
|
|
|
"PieceCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"PricePerByte": "0",
|
|
|
|
"UnsealPrice": "0",
|
2021-05-27 02:50:34 +00:00
|
|
|
"Status": 0,
|
|
|
|
"Message": "string value",
|
|
|
|
"Provider": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
2022-12-23 17:52:49 +00:00
|
|
|
"BytesReceived": 42,
|
|
|
|
"BytesPaidFor": 42,
|
|
|
|
"TotalPaid": "0",
|
|
|
|
"TransferChannelID": {
|
|
|
|
"Initiator": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"Responder": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"ID": 3
|
|
|
|
},
|
|
|
|
"DataTransfer": {
|
|
|
|
"TransferID": 3,
|
|
|
|
"Status": 1,
|
|
|
|
"BaseCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"IsInitiator": true,
|
|
|
|
"IsSender": true,
|
|
|
|
"Voucher": "string value",
|
|
|
|
"Message": "string value",
|
|
|
|
"OtherPeer": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"Transferred": 42,
|
|
|
|
"Stages": {
|
|
|
|
"Stages": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"Description": "string value",
|
|
|
|
"CreatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"Logs": [
|
|
|
|
{
|
|
|
|
"Log": "string value",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2021-11-10 16:51:16 +00:00
|
|
|
"Event": 5
|
2021-05-27 02:50:34 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### ClientHasLocal
|
|
|
|
ClientHasLocal indicates whether a certain CID is locally stored.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `true`
|
|
|
|
|
|
|
|
### ClientImport
|
|
|
|
ClientImport imports file under the specified path into filestore.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Path": "string value",
|
2022-12-23 17:52:49 +00:00
|
|
|
"IsCAR": true
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ImportID": 50
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### ClientListDataTransfers
|
|
|
|
ClientListTransfers returns the status of all ongoing transfers of data
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"TransferID": 3,
|
2021-12-28 02:38:12 +00:00
|
|
|
"Status": 1,
|
2022-12-23 17:52:49 +00:00
|
|
|
"BaseCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"IsInitiator": true,
|
|
|
|
"IsSender": true,
|
2021-12-28 02:38:12 +00:00
|
|
|
"Voucher": "string value",
|
|
|
|
"Message": "string value",
|
2022-12-23 17:52:49 +00:00
|
|
|
"OtherPeer": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
2021-12-28 02:38:12 +00:00
|
|
|
"Transferred": 42,
|
|
|
|
"Stages": {
|
|
|
|
"Stages": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"Description": "string value",
|
|
|
|
"CreatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"Logs": [
|
|
|
|
{
|
|
|
|
"Log": "string value",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### ClientListDeals
|
|
|
|
ClientListDeals returns information about the deals made by the local client.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ProposalCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2021-12-28 02:38:12 +00:00
|
|
|
"State": 42,
|
|
|
|
"Message": "string value",
|
2022-12-23 17:52:49 +00:00
|
|
|
"DealStages": {
|
|
|
|
"Stages": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"Description": "string value",
|
|
|
|
"ExpectedDuration": "string value",
|
|
|
|
"CreatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"Logs": [
|
|
|
|
{
|
|
|
|
"Log": "string value",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2021-12-28 02:38:12 +00:00
|
|
|
"Provider": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"DataRef": {
|
|
|
|
"TransferType": "string value",
|
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2023-01-13 19:11:13 +00:00
|
|
|
"PieceCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"PieceSize": 1024,
|
|
|
|
"RawBlockSize": 42
|
|
|
|
},
|
|
|
|
"PieceCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2021-12-28 02:38:12 +00:00
|
|
|
"Size": 42,
|
|
|
|
"PricePerEpoch": "0",
|
|
|
|
"Duration": 42,
|
2022-12-23 17:52:49 +00:00
|
|
|
"DealID": 5432,
|
2021-12-28 02:38:12 +00:00
|
|
|
"CreationTime": "0001-01-01T00:00:00Z",
|
|
|
|
"Verified": true,
|
2022-12-23 17:52:49 +00:00
|
|
|
"TransferChannelID": {
|
|
|
|
"Initiator": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"Responder": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"ID": 3
|
|
|
|
},
|
|
|
|
"DataTransfer": {
|
|
|
|
"TransferID": 3,
|
|
|
|
"Status": 1,
|
|
|
|
"BaseCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"IsInitiator": true,
|
|
|
|
"IsSender": true,
|
|
|
|
"Voucher": "string value",
|
|
|
|
"Message": "string value",
|
|
|
|
"OtherPeer": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"Transferred": 42,
|
|
|
|
"Stages": {
|
|
|
|
"Stages": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"Description": "string value",
|
|
|
|
"CreatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"Logs": [
|
|
|
|
{
|
|
|
|
"Log": "string value",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### ClientListImports
|
|
|
|
ClientListImports lists imported files and their root CIDs
|
|
|
|
|
|
|
|
|
2021-05-27 02:50:34 +00:00
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Key": 50,
|
|
|
|
"Err": "string value",
|
2023-01-13 19:11:13 +00:00
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2021-12-28 02:38:12 +00:00
|
|
|
"Source": "string value",
|
2022-12-23 17:52:49 +00:00
|
|
|
"FilePath": "string value",
|
|
|
|
"CARPath": "string value"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2021-05-27 02:50:34 +00:00
|
|
|
|
|
|
|
### ClientListRetrievals
|
|
|
|
ClientListRetrievals returns information about retrievals made by the local client
|
|
|
|
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"PayloadCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"ID": 5,
|
2023-01-13 19:11:13 +00:00
|
|
|
"PieceCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2021-12-28 02:38:12 +00:00
|
|
|
"PricePerByte": "0",
|
|
|
|
"UnsealPrice": "0",
|
|
|
|
"Status": 0,
|
|
|
|
"Message": "string value",
|
|
|
|
"Provider": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
2022-12-23 17:52:49 +00:00
|
|
|
"BytesReceived": 42,
|
|
|
|
"BytesPaidFor": 42,
|
2021-12-28 02:38:12 +00:00
|
|
|
"TotalPaid": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"TransferChannelID": {
|
|
|
|
"Initiator": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"Responder": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"ID": 3
|
|
|
|
},
|
|
|
|
"DataTransfer": {
|
|
|
|
"TransferID": 3,
|
|
|
|
"Status": 1,
|
|
|
|
"BaseCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"IsInitiator": true,
|
|
|
|
"IsSender": true,
|
|
|
|
"Voucher": "string value",
|
|
|
|
"Message": "string value",
|
|
|
|
"OtherPeer": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"Transferred": 42,
|
|
|
|
"Stages": {
|
|
|
|
"Stages": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"Description": "string value",
|
|
|
|
"CreatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z",
|
|
|
|
"Logs": [
|
|
|
|
{
|
|
|
|
"Log": "string value",
|
|
|
|
"UpdatedTime": "0001-01-01T00:00:00Z"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2021-12-28 02:38:12 +00:00
|
|
|
"Event": 5
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### ClientMinerQueryOffer
|
|
|
|
ClientMinerQueryOffer returns a QueryOffer for the specific miner and file.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Err": "string value",
|
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Piece": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Size": 42,
|
|
|
|
"MinPrice": "0",
|
|
|
|
"UnsealPrice": "0",
|
|
|
|
"PricePerByte": "0",
|
|
|
|
"PaymentInterval": 42,
|
|
|
|
"PaymentIntervalIncrease": 42,
|
|
|
|
"Miner": "f01234",
|
|
|
|
"MinerPeer": {
|
|
|
|
"Address": "f01234",
|
|
|
|
"ID": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"PieceCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### ClientQueryAsk
|
|
|
|
ClientQueryAsk returns a signed StorageAsk from the specified miner.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"f01234"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Response": {
|
|
|
|
"Price": "0",
|
|
|
|
"VerifiedPrice": "0",
|
|
|
|
"MinPieceSize": 1032,
|
|
|
|
"MaxPieceSize": 1032,
|
|
|
|
"Miner": "f01234",
|
|
|
|
"Timestamp": 10101,
|
|
|
|
"Expiry": 10101,
|
|
|
|
"SeqNo": 42
|
|
|
|
},
|
|
|
|
"DealProtocols": [
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### ClientRemoveImport
|
|
|
|
ClientRemoveImport removes file import
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
50
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### ClientRestartDataTransfer
|
|
|
|
ClientRestartDataTransfer attempts to restart a data transfer with the given transfer ID and other peer
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
3,
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
true
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### ClientRetrieve
|
|
|
|
ClientRetrieve initiates the retrieval of a file, as specified in the order.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Piece": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"DataSelector": "Links/21/Hash/Links/42/Hash",
|
|
|
|
"Size": 42,
|
|
|
|
"Total": "0",
|
|
|
|
"UnsealPrice": "0",
|
|
|
|
"PaymentInterval": 42,
|
|
|
|
"PaymentIntervalIncrease": 42,
|
|
|
|
"Client": "f01234",
|
|
|
|
"Miner": "f01234",
|
|
|
|
"MinerPeer": {
|
|
|
|
"Address": "f01234",
|
|
|
|
"ID": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
|
|
|
"PieceCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"RemoteStore": "00000000-0000-0000-0000-000000000000"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"DealID": 5
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### ClientRetrieveTryRestartInsufficientFunds
|
|
|
|
ClientRetrieveTryRestartInsufficientFunds attempts to restart stalled retrievals on a given payment channel
|
|
|
|
which are stuck due to insufficient funds
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### ClientRetrieveWait
|
|
|
|
ClientRetrieveWait waits for retrieval to be complete
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
5
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### ClientStartDeal
|
|
|
|
ClientStartDeal proposes a deal with a miner.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Data": {
|
|
|
|
"TransferType": "string value",
|
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"PieceCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"PieceSize": 1024,
|
|
|
|
"RawBlockSize": 42
|
|
|
|
},
|
|
|
|
"Wallet": "f01234",
|
|
|
|
"Miner": "f01234",
|
|
|
|
"EpochPrice": "0",
|
|
|
|
"MinBlocksDuration": 42,
|
|
|
|
"ProviderCollateral": "0",
|
|
|
|
"DealStartEpoch": 10101,
|
|
|
|
"FastRetrieval": true,
|
|
|
|
"VerifiedDeal": true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### ClientStatelessDeal
|
|
|
|
ClientStatelessDeal fire-and-forget-proposes an offline deal to a miner without subsequent tracking.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Data": {
|
|
|
|
"TransferType": "string value",
|
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"PieceCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"PieceSize": 1024,
|
|
|
|
"RawBlockSize": 42
|
|
|
|
},
|
|
|
|
"Wallet": "f01234",
|
|
|
|
"Miner": "f01234",
|
|
|
|
"EpochPrice": "0",
|
|
|
|
"MinBlocksDuration": 42,
|
|
|
|
"ProviderCollateral": "0",
|
|
|
|
"DealStartEpoch": 10101,
|
|
|
|
"FastRetrieval": true,
|
|
|
|
"VerifiedDeal": true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Create
|
|
|
|
|
|
|
|
|
|
|
|
### CreateBackup
|
|
|
|
CreateBackup creates node backup onder the specified file name. The
|
|
|
|
method requires that the lotus daemon is running with the
|
|
|
|
LOTUS_BACKUP_BASE_PATH environment variable set to some path, and that
|
|
|
|
the path specified when calling CreateBackup is within the base path
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
## Eth
|
|
|
|
These methods are used for Ethereum-compatible JSON-RPC calls
|
|
|
|
|
|
|
|
EthAccounts will always return [] since we don't expect Lotus to manage private keys
|
|
|
|
|
|
|
|
|
|
|
|
### EthAccounts
|
|
|
|
There are not yet any comments for this method.
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"0x5cbeecf99d3fdb3f25e309cc264f240bb0664031"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2023-02-15 19:17:00 +00:00
|
|
|
### EthAddressToFilecoinAddress
|
|
|
|
EthAddressToFilecoinAddress converts an EthAddress into an f410 Filecoin Address
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"0x5cbeecf99d3fdb3f25e309cc264f240bb0664031"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"f01234"`
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### EthBlockNumber
|
|
|
|
EthBlockNumber returns the height of the latest (heaviest) TipSet
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `"0x5"`
|
|
|
|
|
|
|
|
### EthCall
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"from": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"to": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"gas": "0x5",
|
|
|
|
"gasPrice": "0x0",
|
|
|
|
"value": "0x0",
|
|
|
|
"data": "0x07"
|
|
|
|
},
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0x07"`
|
|
|
|
|
|
|
|
### EthChainId
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `"0x5"`
|
|
|
|
|
|
|
|
### EthEstimateGas
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2023-11-29 10:17:10 +00:00
|
|
|
"Bw=="
|
2023-01-13 19:11:13 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0x5"`
|
|
|
|
|
|
|
|
### EthFeeHistory
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2023-02-10 18:33:59 +00:00
|
|
|
"Bw=="
|
2023-01-13 19:11:13 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2023-02-06 09:46:24 +00:00
|
|
|
"oldestBlock": "0x5",
|
2023-01-13 19:11:13 +00:00
|
|
|
"baseFeePerGas": [
|
|
|
|
"0x0"
|
|
|
|
],
|
|
|
|
"gasUsedRatio": [
|
|
|
|
12.3
|
|
|
|
],
|
|
|
|
"reward": []
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### EthGasPrice
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `"0x0"`
|
|
|
|
|
|
|
|
### EthGetBalance
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0x0"`
|
|
|
|
|
|
|
|
### EthGetBlockByHash
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
true
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"hash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"parentHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"sha3Uncles": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"miner": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"stateRoot": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"transactionsRoot": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"receiptsRoot": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"logsBloom": "0x07",
|
|
|
|
"difficulty": "0x5",
|
|
|
|
"totalDifficulty": "0x5",
|
|
|
|
"number": "0x5",
|
|
|
|
"gasLimit": "0x5",
|
|
|
|
"gasUsed": "0x5",
|
|
|
|
"timestamp": "0x5",
|
2023-02-06 09:46:24 +00:00
|
|
|
"extraData": "0x07",
|
2023-01-13 19:11:13 +00:00
|
|
|
"mixHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"nonce": "0x0707070707070707",
|
|
|
|
"baseFeePerGas": "0x0",
|
|
|
|
"size": "0x5",
|
|
|
|
"transactions": [
|
|
|
|
{}
|
|
|
|
],
|
|
|
|
"uncles": [
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### EthGetBlockByNumber
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value",
|
|
|
|
true
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"hash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"parentHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"sha3Uncles": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"miner": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"stateRoot": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"transactionsRoot": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"receiptsRoot": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"logsBloom": "0x07",
|
|
|
|
"difficulty": "0x5",
|
|
|
|
"totalDifficulty": "0x5",
|
|
|
|
"number": "0x5",
|
|
|
|
"gasLimit": "0x5",
|
|
|
|
"gasUsed": "0x5",
|
|
|
|
"timestamp": "0x5",
|
2023-02-06 09:46:24 +00:00
|
|
|
"extraData": "0x07",
|
2023-01-13 19:11:13 +00:00
|
|
|
"mixHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"nonce": "0x0707070707070707",
|
|
|
|
"baseFeePerGas": "0x0",
|
|
|
|
"size": "0x5",
|
|
|
|
"transactions": [
|
|
|
|
{}
|
|
|
|
],
|
|
|
|
"uncles": [
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### EthGetBlockTransactionCountByHash
|
|
|
|
EthGetBlockTransactionCountByHash returns the number of messages in the TipSet
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0x5"`
|
|
|
|
|
|
|
|
### EthGetBlockTransactionCountByNumber
|
|
|
|
EthGetBlockTransactionCountByNumber returns the number of messages in the TipSet
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"0x5"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0x5"`
|
|
|
|
|
|
|
|
### EthGetCode
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0x07"`
|
|
|
|
|
|
|
|
### EthGetFilterChanges
|
|
|
|
Polling method for a filter, returns event logs which occurred since last poll.
|
|
|
|
(requires write perm since timestamp of last filter execution will be written)
|
|
|
|
|
|
|
|
|
2023-05-04 16:09:57 +00:00
|
|
|
Perms: read
|
2023-01-13 19:11:13 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2023-01-26 14:50:18 +00:00
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
2023-01-13 19:11:13 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
### EthGetFilterLogs
|
|
|
|
Returns event logs matching filter with given id.
|
|
|
|
(requires write perm since timestamp of last filter execution will be written)
|
|
|
|
|
|
|
|
|
2023-05-04 16:09:57 +00:00
|
|
|
Perms: read
|
2023-01-13 19:11:13 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2023-01-26 14:50:18 +00:00
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
2023-01-13 19:11:13 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
### EthGetLogs
|
|
|
|
Returns event logs matching given filter spec.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"fromBlock": "2301220",
|
|
|
|
"address": [
|
|
|
|
"0x5cbeecf99d3fdb3f25e309cc264f240bb0664031"
|
|
|
|
],
|
|
|
|
"topics": null
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2023-01-18 22:48:10 +00:00
|
|
|
### EthGetMessageCidByTransactionHash
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### EthGetStorageAt
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"0x07",
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0x07"`
|
|
|
|
|
|
|
|
### EthGetTransactionByBlockHashAndIndex
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"0x5"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"chainId": "0x5",
|
|
|
|
"nonce": "0x5",
|
|
|
|
"hash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockNumber": "0x5",
|
|
|
|
"transactionIndex": "0x5",
|
|
|
|
"from": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"to": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"value": "0x0",
|
|
|
|
"type": "0x5",
|
|
|
|
"input": "0x07",
|
|
|
|
"gas": "0x5",
|
|
|
|
"maxFeePerGas": "0x0",
|
|
|
|
"maxPriorityFeePerGas": "0x0",
|
2023-02-09 13:14:48 +00:00
|
|
|
"accessList": [
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
|
|
|
],
|
2023-02-13 23:29:13 +00:00
|
|
|
"v": "0x0",
|
2023-01-13 19:11:13 +00:00
|
|
|
"r": "0x0",
|
|
|
|
"s": "0x0"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### EthGetTransactionByBlockNumberAndIndex
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2023-01-13 19:11:13 +00:00
|
|
|
"0x5",
|
|
|
|
"0x5"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2023-01-13 19:11:13 +00:00
|
|
|
"chainId": "0x5",
|
|
|
|
"nonce": "0x5",
|
|
|
|
"hash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockNumber": "0x5",
|
|
|
|
"transactionIndex": "0x5",
|
|
|
|
"from": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"to": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"value": "0x0",
|
|
|
|
"type": "0x5",
|
|
|
|
"input": "0x07",
|
|
|
|
"gas": "0x5",
|
|
|
|
"maxFeePerGas": "0x0",
|
|
|
|
"maxPriorityFeePerGas": "0x0",
|
2023-02-09 13:14:48 +00:00
|
|
|
"accessList": [
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
|
|
|
],
|
2023-02-13 23:29:13 +00:00
|
|
|
"v": "0x0",
|
2023-01-13 19:11:13 +00:00
|
|
|
"r": "0x0",
|
|
|
|
"s": "0x0"
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### EthGetTransactionByHash
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2023-01-13 19:11:13 +00:00
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2023-01-13 19:11:13 +00:00
|
|
|
"chainId": "0x5",
|
|
|
|
"nonce": "0x5",
|
|
|
|
"hash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockNumber": "0x5",
|
|
|
|
"transactionIndex": "0x5",
|
|
|
|
"from": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"to": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"value": "0x0",
|
|
|
|
"type": "0x5",
|
|
|
|
"input": "0x07",
|
|
|
|
"gas": "0x5",
|
|
|
|
"maxFeePerGas": "0x0",
|
|
|
|
"maxPriorityFeePerGas": "0x0",
|
2023-02-09 13:14:48 +00:00
|
|
|
"accessList": [
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
|
|
|
],
|
2023-02-13 23:29:13 +00:00
|
|
|
"v": "0x0",
|
2023-01-13 19:11:13 +00:00
|
|
|
"r": "0x0",
|
|
|
|
"s": "0x0"
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-03-14 04:59:16 +00:00
|
|
|
### EthGetTransactionByHashLimited
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
10101
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"chainId": "0x5",
|
|
|
|
"nonce": "0x5",
|
|
|
|
"hash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockNumber": "0x5",
|
|
|
|
"transactionIndex": "0x5",
|
|
|
|
"from": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"to": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"value": "0x0",
|
|
|
|
"type": "0x5",
|
|
|
|
"input": "0x07",
|
|
|
|
"gas": "0x5",
|
|
|
|
"maxFeePerGas": "0x0",
|
|
|
|
"maxPriorityFeePerGas": "0x0",
|
|
|
|
"accessList": [
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
|
|
|
],
|
|
|
|
"v": "0x0",
|
|
|
|
"r": "0x0",
|
|
|
|
"s": "0x0"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### EthGetTransactionCount
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
Perms: read
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2023-01-13 19:11:13 +00:00
|
|
|
"0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"string value"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
Response: `"0x5"`
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2023-01-04 13:22:41 +00:00
|
|
|
### EthGetTransactionHashByCid
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"`
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### EthGetTransactionReceipt
|
2020-10-13 10:37:00 +00:00
|
|
|
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
Perms: read
|
2020-10-13 10:37:00 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2023-01-13 19:11:13 +00:00
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
2020-10-13 10:37:00 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2023-03-14 04:59:16 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"transactionHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"transactionIndex": "0x5",
|
|
|
|
"blockHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockNumber": "0x5",
|
|
|
|
"from": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"to": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"root": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"status": "0x5",
|
|
|
|
"contractAddress": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"cumulativeGasUsed": "0x5",
|
|
|
|
"gasUsed": "0x5",
|
|
|
|
"effectiveGasPrice": "0x0",
|
|
|
|
"logsBloom": "0x07",
|
|
|
|
"logs": [
|
|
|
|
{
|
|
|
|
"address": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"data": "0x07",
|
|
|
|
"topics": [
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
|
|
|
],
|
|
|
|
"removed": true,
|
|
|
|
"logIndex": "0x5",
|
|
|
|
"transactionIndex": "0x5",
|
|
|
|
"transactionHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockNumber": "0x5"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"type": "0x5"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### EthGetTransactionReceiptLimited
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
10101
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"transactionHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"transactionIndex": "0x5",
|
|
|
|
"blockHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockNumber": "0x5",
|
|
|
|
"from": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"to": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"root": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"status": "0x5",
|
|
|
|
"contractAddress": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"cumulativeGasUsed": "0x5",
|
|
|
|
"gasUsed": "0x5",
|
|
|
|
"effectiveGasPrice": "0x0",
|
|
|
|
"logsBloom": "0x07",
|
|
|
|
"logs": [
|
|
|
|
{
|
|
|
|
"address": "0x5cbeecf99d3fdb3f25e309cc264f240bb0664031",
|
|
|
|
"data": "0x07",
|
|
|
|
"topics": [
|
2023-02-10 17:32:59 +00:00
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
2023-01-13 19:11:13 +00:00
|
|
|
],
|
|
|
|
"removed": true,
|
|
|
|
"logIndex": "0x5",
|
|
|
|
"transactionIndex": "0x5",
|
|
|
|
"transactionHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockNumber": "0x5"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"type": "0x5"
|
|
|
|
}
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### EthMaxPriorityFeePerGas
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `"0x0"`
|
|
|
|
|
|
|
|
### EthNewBlockFilter
|
|
|
|
Installs a persistent filter to notify when a new block arrives.
|
|
|
|
|
|
|
|
|
2023-05-04 16:09:57 +00:00
|
|
|
Perms: read
|
2023-01-13 19:11:13 +00:00
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2023-01-26 14:50:18 +00:00
|
|
|
Response: `"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"`
|
2023-01-13 19:11:13 +00:00
|
|
|
|
|
|
|
### EthNewFilter
|
|
|
|
Installs a persistent filter based on given filter spec.
|
|
|
|
|
|
|
|
|
2023-05-04 16:09:57 +00:00
|
|
|
Perms: read
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2023-01-13 19:11:13 +00:00
|
|
|
"fromBlock": "2301220",
|
|
|
|
"address": [
|
|
|
|
"0x5cbeecf99d3fdb3f25e309cc264f240bb0664031"
|
|
|
|
],
|
|
|
|
"topics": null
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2023-01-26 14:50:18 +00:00
|
|
|
Response: `"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"`
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### EthNewPendingTransactionFilter
|
|
|
|
Installs a persistent filter to notify when new messages arrive in the message pool.
|
2020-09-07 12:35:29 +00:00
|
|
|
|
|
|
|
|
2023-05-04 16:09:57 +00:00
|
|
|
Perms: read
|
2020-09-07 12:35:29 +00:00
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
Inputs: `null`
|
|
|
|
|
2023-01-26 14:50:18 +00:00
|
|
|
Response: `"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"`
|
2020-09-07 12:35:29 +00:00
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### EthProtocolVersion
|
2020-09-07 12:35:29 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `"0x5"`
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### EthSendRawTransaction
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2023-01-13 19:11:13 +00:00
|
|
|
"0x07"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
Response: `"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"`
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### EthSubscribe
|
|
|
|
Subscribe to different event types using websockets
|
|
|
|
eventTypes is one or more of:
|
|
|
|
- newHeads: notify when new blocks arrive.
|
|
|
|
- pendingTransactions: notify when new messages arrive in the message pool.
|
|
|
|
- logs: notify new event logs that match a criteria
|
|
|
|
params contains additional parameters used with the log event type
|
|
|
|
The client will receive a stream of EthSubscriptionResponse values until EthUnsubscribe is called.
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
2023-05-04 16:09:57 +00:00
|
|
|
Perms: read
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2023-01-31 10:00:15 +00:00
|
|
|
"Bw=="
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2023-01-26 14:50:18 +00:00
|
|
|
Response: `"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"`
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2023-04-21 12:02:40 +00:00
|
|
|
### EthSyncing
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `false`
|
|
|
|
|
2023-08-22 16:15:14 +00:00
|
|
|
### EthTraceBlock
|
2024-02-21 20:20:00 +00:00
|
|
|
Returns an OpenEthereum-compatible trace of the given block (implementing `trace_block`),
|
|
|
|
translating Filecoin semantics into Ethereum semantics and tracing both EVM and FVM calls.
|
2023-08-22 16:15:14 +00:00
|
|
|
|
2024-02-21 20:20:00 +00:00
|
|
|
Features:
|
|
|
|
|
|
|
|
- FVM actor create events, calls, etc. show up as if they were EVM smart contract events.
|
|
|
|
- Native FVM call inputs are ABI-encoded (Solidity ABI) as if they were calls to a
|
|
|
|
`handle_filecoin_method(uint64 method, uint64 codec, bytes params)` function
|
|
|
|
(where `codec` is the IPLD codec of `params`).
|
|
|
|
- Native FVM call outputs (return values) are ABI-encoded as `(uint32 exit_code, uint64
|
|
|
|
codec, bytes output)` where `codec` is the IPLD codec of `output`.
|
|
|
|
|
|
|
|
Limitations (for now):
|
|
|
|
|
|
|
|
1. Block rewards are not included in the trace.
|
|
|
|
2. SELFDESTRUCT operations are not included in the trace.
|
|
|
|
3. EVM smart contract "create" events always specify `0xfe` as the "code" for newly created EVM smart contracts.
|
2023-08-22 16:15:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2024-02-21 20:20:00 +00:00
|
|
|
"type": "string value",
|
|
|
|
"error": "string value",
|
2023-08-22 16:15:14 +00:00
|
|
|
"subtraces": 123,
|
|
|
|
"traceAddress": [
|
|
|
|
123
|
|
|
|
],
|
2024-02-21 20:20:00 +00:00
|
|
|
"action": {},
|
|
|
|
"result": {},
|
2023-08-22 16:15:14 +00:00
|
|
|
"blockHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"blockNumber": 9,
|
|
|
|
"transactionHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"transactionPosition": 123
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
### EthTraceReplayBlockTransactions
|
|
|
|
Replays all transactions in a block returning the requested traces for each transaction
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value",
|
|
|
|
[
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2023-08-28 10:38:53 +00:00
|
|
|
"output": "0x07",
|
2023-08-22 16:15:14 +00:00
|
|
|
"stateDiff": "string value",
|
|
|
|
"trace": [
|
|
|
|
{
|
2024-02-21 20:20:00 +00:00
|
|
|
"type": "string value",
|
|
|
|
"error": "string value",
|
2023-08-22 16:15:14 +00:00
|
|
|
"subtraces": 123,
|
|
|
|
"traceAddress": [
|
|
|
|
123
|
|
|
|
],
|
2024-02-21 20:20:00 +00:00
|
|
|
"action": {},
|
|
|
|
"result": {}
|
2023-08-22 16:15:14 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"transactionHash": "0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e",
|
|
|
|
"vmTrace": "string value"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### EthUninstallFilter
|
|
|
|
Uninstalls a filter with given id.
|
2021-04-05 17:15:32 +00:00
|
|
|
|
|
|
|
|
2023-05-04 16:09:57 +00:00
|
|
|
Perms: read
|
2021-04-05 17:15:32 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2023-01-26 14:50:18 +00:00
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
Response: `true`
|
2020-10-01 16:00:24 +00:00
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### EthUnsubscribe
|
|
|
|
Unsubscribe from a websocket subscription
|
2020-10-01 16:00:24 +00:00
|
|
|
|
|
|
|
|
2023-05-04 16:09:57 +00:00
|
|
|
Perms: read
|
2020-10-01 16:00:24 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2023-01-26 14:50:18 +00:00
|
|
|
"0x37690cfec6c1bf4c3b9288c7a5d783e98731e90b0a4c177c2a374c7a9427355e"
|
2020-10-01 16:00:24 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
Response: `true`
|
2020-10-01 16:00:24 +00:00
|
|
|
|
2023-02-24 19:19:52 +00:00
|
|
|
## Filecoin
|
|
|
|
|
|
|
|
|
|
|
|
### FilecoinAddressToEthAddress
|
|
|
|
FilecoinAddressToEthAddress converts an f410 or f0 Filecoin Address to an EthAddress
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0x5cbeecf99d3fdb3f25e309cc264f240bb0664031"`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
## Gas
|
|
|
|
|
|
|
|
|
|
|
|
### GasEstimateFeeCap
|
|
|
|
GasEstimateFeeCap estimates gas fee cap
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
9,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
|
|
|
### GasEstimateGasLimit
|
|
|
|
GasEstimateGasLimit estimates gas used by the message and returns it.
|
|
|
|
It fails if message fails to execute.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `9`
|
|
|
|
|
|
|
|
### GasEstimateGasPremium
|
|
|
|
GasEstimateGasPremium estimates what gas price should be used for a
|
|
|
|
message to have high likelihood of inclusion in `nblocksincl` epochs.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
9,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
|
|
|
### GasEstimateMessageGas
|
|
|
|
GasEstimateMessageGas estimates gas values for unset message gas fields
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
{
|
2022-08-16 19:56:32 +00:00
|
|
|
"MaxFee": "0",
|
2022-11-29 10:25:41 +00:00
|
|
|
"MsgUuid": "07070707-0707-0707-0707-070707070707",
|
|
|
|
"MaximizeFeeCap": true
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
## Get
|
|
|
|
|
|
|
|
|
2024-03-19 00:37:46 +00:00
|
|
|
### GetActorEventsRaw
|
|
|
|
GetActorEventsRaw returns all user-programmed and built-in actor events that match the given
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
filter.
|
|
|
|
This is a request/response API.
|
|
|
|
Results available from this API may be limited by the MaxFilterResults and MaxFilterHeightRange
|
|
|
|
configuration options and also the amount of historical data available in the node.
|
|
|
|
|
|
|
|
This is an EXPERIMENTAL API and may be subject to change.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"addresses": [
|
|
|
|
"f01234"
|
|
|
|
],
|
|
|
|
"fields": {
|
|
|
|
"abc": [
|
|
|
|
{
|
|
|
|
"codec": 81,
|
|
|
|
"value": "ZGRhdGE="
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"fromHeight": 1010,
|
|
|
|
"toHeight": 1020
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"entries": [
|
|
|
|
{
|
|
|
|
"Flags": 7,
|
|
|
|
"Key": "string value",
|
|
|
|
"Codec": 42,
|
|
|
|
"Value": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"emitter": "f01234",
|
|
|
|
"reverted": true,
|
|
|
|
"height": 10101,
|
|
|
|
"tipsetKey": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"msgCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
## I
|
|
|
|
|
|
|
|
|
|
|
|
### ID
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"`
|
|
|
|
|
|
|
|
## Log
|
|
|
|
|
|
|
|
|
2021-08-17 13:15:36 +00:00
|
|
|
### LogAlerts
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Type": {
|
|
|
|
"System": "string value",
|
|
|
|
"Subsystem": "string value"
|
|
|
|
},
|
|
|
|
"Active": true,
|
2022-12-23 17:52:49 +00:00
|
|
|
"LastActive": {
|
|
|
|
"Type": "string value",
|
|
|
|
"Message": "json raw message",
|
|
|
|
"Time": "0001-01-01T00:00:00Z"
|
|
|
|
},
|
|
|
|
"LastResolved": {
|
|
|
|
"Type": "string value",
|
|
|
|
"Message": "json raw message",
|
|
|
|
"Time": "0001-01-01T00:00:00Z"
|
|
|
|
}
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2021-08-17 13:15:36 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### LogList
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### LogSetLevel
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value",
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
## Market
|
|
|
|
|
|
|
|
|
2021-01-06 13:27:28 +00:00
|
|
|
### MarketAddBalance
|
|
|
|
MarketAddBalance adds funds to the market actor
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
"f01234",
|
|
|
|
"0"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-01-07 08:35:30 +00:00
|
|
|
### MarketGetReserved
|
|
|
|
MarketGetReserved gets the amount of funds that are currently reserved for the address
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
2020-11-11 05:08:23 +00:00
|
|
|
### MarketReleaseFunds
|
|
|
|
MarketReleaseFunds releases funds reserved by MarketReserveFunds
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
"0"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### MarketReserveFunds
|
|
|
|
MarketReserveFunds reserves funds for a deal
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
2020-12-03 21:20:50 +00:00
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
"f01234",
|
|
|
|
"0"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MarketWithdraw
|
|
|
|
MarketWithdraw withdraws unlocked funds from the market actor
|
|
|
|
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"0"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Miner
|
|
|
|
|
|
|
|
|
|
|
|
### MinerCreateBlock
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2020-10-06 07:30:40 +00:00
|
|
|
"Miner": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Parents": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"Ticket": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"VRFProof": "Ynl0ZSBhcnJheQ=="
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
"Eproof": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"WinCount": 9,
|
|
|
|
"VRFProof": "Ynl0ZSBhcnJheQ=="
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"BeaconValues": [
|
|
|
|
{
|
|
|
|
"Round": 42,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
],
|
2021-12-28 02:38:12 +00:00
|
|
|
"Messages": [
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"Epoch": 10101,
|
|
|
|
"Timestamp": 42,
|
2022-12-23 17:52:49 +00:00
|
|
|
"WinningPoStProof": [
|
|
|
|
{
|
|
|
|
"PoStProof": 8,
|
|
|
|
"ProofBytes": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
]
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Header": {
|
2020-10-06 07:30:40 +00:00
|
|
|
"Miner": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Ticket": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"VRFProof": "Ynl0ZSBhcnJheQ=="
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ElectionProof": {
|
|
|
|
"WinCount": 9,
|
|
|
|
"VRFProof": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"BeaconEntries": [
|
|
|
|
{
|
|
|
|
"Round": 42,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"WinPoStProof": [
|
|
|
|
{
|
|
|
|
"PoStProof": 8,
|
|
|
|
"ProofBytes": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
],
|
2021-12-28 02:38:12 +00:00
|
|
|
"Parents": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"ParentWeight": "0",
|
|
|
|
"Height": 10101,
|
2022-12-23 17:52:49 +00:00
|
|
|
"ParentStateRoot": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"ParentMessageReceipts": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"Messages": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"BLSAggregate": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"Timestamp": 42,
|
2022-12-23 17:52:49 +00:00
|
|
|
"BlockSig": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"ForkSignaling": 42,
|
2020-08-24 10:25:49 +00:00
|
|
|
"ParentBaseFee": "0"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"BlsMessages": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"SecpkMessages": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MinerGetBaseInfo
|
|
|
|
There are not yet any comments for this method.
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
10101,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"MinerPower": "0",
|
|
|
|
"NetworkPower": "0",
|
2021-12-28 02:38:12 +00:00
|
|
|
"Sectors": [
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"SealProof": 8,
|
|
|
|
"SectorNumber": 9,
|
2023-01-13 19:11:13 +00:00
|
|
|
"SectorKey": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"SealedCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
],
|
2022-12-23 17:52:49 +00:00
|
|
|
"WorkerKey": "f01234",
|
|
|
|
"SectorSize": 34359738368,
|
2020-08-24 10:25:49 +00:00
|
|
|
"PrevBeaconEntry": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"Round": 42,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"BeaconEntries": [
|
|
|
|
{
|
|
|
|
"Round": 42,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"EligibleForMining": true
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Mpool
|
|
|
|
The Mpool methods are for interacting with the message pool. The message pool
|
|
|
|
manages all incoming and outgoing 'messages' going over the network.
|
|
|
|
|
|
|
|
|
2020-10-22 12:46:10 +00:00
|
|
|
### MpoolBatchPush
|
|
|
|
MpoolBatchPush batch pushes a signed message to mempool.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2021-12-28 02:38:12 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2020-10-22 12:46:10 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-10-22 12:46:10 +00:00
|
|
|
|
|
|
|
### MpoolBatchPushMessage
|
|
|
|
MpoolBatchPushMessage batch pushes a unsigned message to mempool.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2021-12-28 02:38:12 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
2020-10-22 12:46:10 +00:00
|
|
|
{
|
2022-08-16 19:56:32 +00:00
|
|
|
"MaxFee": "0",
|
2022-11-29 10:25:41 +00:00
|
|
|
"MsgUuid": "07070707-0707-0707-0707-070707070707",
|
|
|
|
"MaximizeFeeCap": true
|
2020-10-22 12:46:10 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-10-22 12:46:10 +00:00
|
|
|
|
|
|
|
### MpoolBatchPushUntrusted
|
|
|
|
MpoolBatchPushUntrusted batch pushes a signed message to mempool from untrusted sources.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2021-12-28 02:38:12 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2020-10-22 12:46:10 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-10-22 12:46:10 +00:00
|
|
|
|
2021-03-27 14:35:46 +00:00
|
|
|
### MpoolCheckMessages
|
|
|
|
MpoolCheckMessages performs logical checks on a batch of messages
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2021-12-28 02:38:12 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
]
|
2021-03-27 14:35:46 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Cid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Code": 0,
|
2022-12-23 17:52:49 +00:00
|
|
|
"OK": true,
|
|
|
|
"Err": "string value",
|
|
|
|
"Hint": {
|
|
|
|
"abc": 123
|
|
|
|
}
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
2021-03-27 14:35:46 +00:00
|
|
|
|
|
|
|
### MpoolCheckPendingMessages
|
|
|
|
MpoolCheckPendingMessages performs logical checks for all pending messages from a given address
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Cid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Code": 0,
|
2022-12-23 17:52:49 +00:00
|
|
|
"OK": true,
|
|
|
|
"Err": "string value",
|
|
|
|
"Hint": {
|
|
|
|
"abc": 123
|
|
|
|
}
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
2021-03-27 14:35:46 +00:00
|
|
|
|
|
|
|
### MpoolCheckReplaceMessages
|
|
|
|
MpoolCheckReplaceMessages performs logical checks on pending messages with replacement
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2021-12-28 02:38:12 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2021-03-27 14:35:46 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Cid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Code": 0,
|
2022-12-23 17:52:49 +00:00
|
|
|
"OK": true,
|
|
|
|
"Err": "string value",
|
|
|
|
"Hint": {
|
|
|
|
"abc": 123
|
|
|
|
}
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
2021-03-27 14:35:46 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### MpoolClear
|
2023-03-23 14:54:31 +00:00
|
|
|
MpoolClear clears pending messages from the mpool.
|
|
|
|
If clearLocal is true, ALL messages will be cleared.
|
|
|
|
If clearLocal is false, local messages will be protected, all others will be cleared.
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
true
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### MpoolGetConfig
|
|
|
|
MpoolGetConfig returns (a copy of) the current mpool config
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"PriorityAddrs": [
|
|
|
|
"f01234"
|
|
|
|
],
|
|
|
|
"SizeLimitHigh": 123,
|
|
|
|
"SizeLimitLow": 123,
|
2023-03-09 21:17:17 +00:00
|
|
|
"ReplaceByFeeRatio": 1.23,
|
2022-12-23 17:52:49 +00:00
|
|
|
"PruneCooldown": 60000000000,
|
|
|
|
"GasLimitOverestimation": 12.3
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MpoolGetNonce
|
|
|
|
MpoolGetNonce gets next nonce for the specified sender.
|
|
|
|
Note that this method may not be atomic. Use MpoolPushMessage instead.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `42`
|
|
|
|
|
|
|
|
### MpoolPending
|
|
|
|
MpoolPending returns pending mempool messages.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### MpoolPush
|
|
|
|
MpoolPush pushes a signed message to mempool.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
2020-10-12 18:47:09 +00:00
|
|
|
},
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MpoolPushMessage
|
|
|
|
MpoolPushMessage atomically assigns a nonce, signs, and pushes a message
|
|
|
|
to mempool.
|
|
|
|
maxFee is only used when GasFeeCap/GasPremium fields aren't specified
|
|
|
|
|
|
|
|
When maxFee is set to 0, MpoolPushMessage will guess appropriate fee
|
|
|
|
based on current chain conditions
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
{
|
2022-08-16 19:56:32 +00:00
|
|
|
"MaxFee": "0",
|
2022-11-29 10:25:41 +00:00
|
|
|
"MsgUuid": "07070707-0707-0707-0707-070707070707",
|
|
|
|
"MaximizeFeeCap": true
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
2020-10-12 18:47:09 +00:00
|
|
|
},
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-10-02 21:14:47 +00:00
|
|
|
### MpoolPushUntrusted
|
|
|
|
MpoolPushUntrusted pushes a signed message to mempool from untrusted sources.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-10-02 21:14:47 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-10-02 21:14:47 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-10-02 21:14:47 +00:00
|
|
|
},
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
2020-10-12 18:47:09 +00:00
|
|
|
},
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-02 21:14:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### MpoolSelect
|
|
|
|
MpoolSelect returns a list of pending messages for inclusion in the next block
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
12.3
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### MpoolSetConfig
|
|
|
|
MpoolSetConfig sets the mpool config to (a copy of) the supplied config
|
|
|
|
|
|
|
|
|
2021-03-23 12:42:56 +00:00
|
|
|
Perms: admin
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"PriorityAddrs": [
|
|
|
|
"f01234"
|
|
|
|
],
|
|
|
|
"SizeLimitHigh": 123,
|
|
|
|
"SizeLimitLow": 123,
|
2023-03-09 21:17:17 +00:00
|
|
|
"ReplaceByFeeRatio": 1.23,
|
2022-12-23 17:52:49 +00:00
|
|
|
"PruneCooldown": 60000000000,
|
|
|
|
"GasLimitOverestimation": 12.3
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### MpoolSub
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Type": 0,
|
|
|
|
"Message": {
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
2020-10-12 18:47:09 +00:00
|
|
|
},
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Msig
|
|
|
|
The Msig methods are used to interact with multisig wallets on the
|
|
|
|
filecoin network
|
|
|
|
|
|
|
|
|
2020-09-06 07:51:06 +00:00
|
|
|
### MsigAddApprove
|
|
|
|
MsigAddApprove approves a previously proposed AddSigner message
|
|
|
|
It takes the following params: <multisig address>, <sender address of the approve msg>, <proposed message ID>,
|
|
|
|
<proposer address>, <new signer>, <whether the number of required signers should be increased>
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
2020-09-06 07:51:06 +00:00
|
|
|
42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
2020-09-06 07:51:06 +00:00
|
|
|
true
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-03-27 14:35:46 +00:00
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-03-27 14:35:46 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-03-27 14:35:46 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2020-09-06 07:51:06 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MsigAddCancel
|
|
|
|
MsigAddCancel cancels a previously proposed AddSigner message
|
|
|
|
It takes the following params: <multisig address>, <sender address of the cancel msg>, <proposed message ID>,
|
|
|
|
<new signer>, <whether the number of required signers should be increased>
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
2020-09-06 07:51:06 +00:00
|
|
|
42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-09-06 07:51:06 +00:00
|
|
|
true
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-03-27 14:35:46 +00:00
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-03-27 14:35:46 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-03-27 14:35:46 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2020-09-06 07:51:06 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MsigAddPropose
|
|
|
|
MsigAddPropose proposes adding a signer in the multisig
|
|
|
|
It takes the following params: <multisig address>, <sender address of the propose msg>,
|
|
|
|
<new signer>, <whether the number of required signers should be increased>
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
|
|
|
"f01234",
|
2020-09-06 07:51:06 +00:00
|
|
|
true
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-03-27 14:35:46 +00:00
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-03-27 14:35:46 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-03-27 14:35:46 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2020-09-06 07:51:06 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### MsigApprove
|
2020-10-10 10:28:59 +00:00
|
|
|
MsigApprove approves a previously-proposed multisig message by transaction ID
|
|
|
|
It takes the following params: <multisig address>, <proposed transaction ID> <signer address>
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
42,
|
|
|
|
"f01234"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-03-27 14:35:46 +00:00
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-03-27 14:35:46 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-03-27 14:35:46 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2020-10-10 10:28:59 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MsigApproveTxnHash
|
|
|
|
MsigApproveTxnHash approves a previously-proposed multisig message, specified
|
|
|
|
using both transaction ID and a hash of the parameters used in the
|
|
|
|
proposal. This method of approval can be used to ensure you only approve
|
|
|
|
exactly the transaction you think you are.
|
2020-08-24 10:25:49 +00:00
|
|
|
It takes the following params: <multisig address>, <proposed message ID>, <proposer address>, <recipient address>, <value to transfer>,
|
|
|
|
<sender address of the approve msg>, <method to call in the proposed message>, <params to include in the proposed message>
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"0",
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
42,
|
|
|
|
"Ynl0ZSBhcnJheQ=="
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-03-27 14:35:46 +00:00
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-03-27 14:35:46 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-03-27 14:35:46 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MsigCancel
|
|
|
|
MsigCancel cancels a previously-proposed multisig message
|
2021-11-18 23:52:20 +00:00
|
|
|
It takes the following params: <multisig address>, <proposed transaction ID> <signer address>
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
42,
|
|
|
|
"f01234"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-11-18 23:52:20 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-11-18 23:52:20 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2021-11-18 23:52:20 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MsigCancelTxnHash
|
|
|
|
MsigCancel cancels a previously-proposed multisig message
|
2020-10-10 10:28:59 +00:00
|
|
|
It takes the following params: <multisig address>, <proposed transaction ID>, <recipient address>, <value to transfer>,
|
2020-08-24 10:25:49 +00:00
|
|
|
<sender address of the cancel msg>, <method to call in the proposed message>, <params to include in the proposed message>
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"0",
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
42,
|
|
|
|
"Ynl0ZSBhcnJheQ=="
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-03-27 14:35:46 +00:00
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-03-27 14:35:46 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-03-27 14:35:46 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MsigCreate
|
|
|
|
MsigCreate creates a multisig wallet
|
|
|
|
It takes the following params: <required number of senders>, <approving addresses>, <unlock duration>
|
|
|
|
<initial balance>, <sender address of the create msg>, <gas price>
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
42,
|
2021-12-28 02:38:12 +00:00
|
|
|
[
|
|
|
|
"f01234"
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
10101,
|
|
|
|
"0",
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"0"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-03-27 14:35:46 +00:00
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-03-27 14:35:46 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-03-27 14:35:46 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MsigGetAvailableBalance
|
|
|
|
MsigGetAvailableBalance returns the portion of a multisig's balance that can be withdrawn or spent
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
2021-02-05 11:34:28 +00:00
|
|
|
### MsigGetPending
|
|
|
|
MsigGetPending returns pending transactions for the given multisig
|
|
|
|
wallet. Once pending transactions are fully approved, they will no longer
|
|
|
|
appear here.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ID": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"Value": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"Approved": [
|
|
|
|
"f01234"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2021-02-05 11:34:28 +00:00
|
|
|
|
2020-09-06 07:51:06 +00:00
|
|
|
### MsigGetVested
|
|
|
|
MsigGetVested returns the amount of FIL that vested in a multisig in a certain period.
|
|
|
|
It takes the following params: <multisig address>, <start epoch>, <end epoch>
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-09-06 07:51:06 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
2020-10-08 19:19:39 +00:00
|
|
|
### MsigGetVestingSchedule
|
2020-10-09 21:14:21 +00:00
|
|
|
MsigGetVestingSchedule returns the vesting details of a given multisig.
|
2020-10-08 19:19:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"InitialBalance": "0",
|
|
|
|
"StartEpoch": 10101,
|
|
|
|
"UnlockDuration": 10101
|
2020-10-08 19:19:39 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### MsigPropose
|
|
|
|
MsigPropose proposes a multisig message
|
|
|
|
It takes the following params: <multisig address>, <recipient address>, <value to transfer>,
|
|
|
|
<sender address of the propose msg>, <method to call in the proposed message>, <params to include in the proposed message>
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"0",
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
42,
|
|
|
|
"Ynl0ZSBhcnJheQ=="
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-03-27 14:35:46 +00:00
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-03-27 14:35:46 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-03-27 14:35:46 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-10-10 10:28:59 +00:00
|
|
|
### MsigRemoveSigner
|
|
|
|
MsigRemoveSigner proposes the removal of a signer from the multisig.
|
|
|
|
It accepts the multisig to make the change on, the proposer address to
|
|
|
|
send the message from, the address to be removed, and a boolean
|
|
|
|
indicating whether or not the signing threshold should be lowered by one
|
|
|
|
along with the address removal.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
"f01234",
|
|
|
|
"f01234",
|
|
|
|
true
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-03-27 14:35:46 +00:00
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-03-27 14:35:46 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-03-27 14:35:46 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2020-10-10 10:28:59 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### MsigSwapApprove
|
|
|
|
MsigSwapApprove approves a previously proposed SwapSigner
|
|
|
|
It takes the following params: <multisig address>, <sender address of the approve msg>, <proposed message ID>,
|
2020-09-06 07:51:06 +00:00
|
|
|
<proposer address>, <old signer>, <new signer>
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-03-27 14:35:46 +00:00
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-03-27 14:35:46 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-03-27 14:35:46 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MsigSwapCancel
|
|
|
|
MsigSwapCancel cancels a previously proposed SwapSigner message
|
|
|
|
It takes the following params: <multisig address>, <sender address of the cancel msg>, <proposed message ID>,
|
2020-09-06 07:51:06 +00:00
|
|
|
<old signer>, <new signer>
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-03-27 14:35:46 +00:00
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-03-27 14:35:46 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-03-27 14:35:46 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### MsigSwapPropose
|
|
|
|
MsigSwapPropose proposes swapping 2 signers in the multisig
|
|
|
|
It takes the following params: <multisig address>, <sender address of the propose msg>,
|
2020-09-06 07:51:06 +00:00
|
|
|
<old signer>, <new signer>
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
|
|
|
"f01234",
|
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-03-27 14:35:46 +00:00
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-03-27 14:35:46 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-03-27 14:35:46 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ValidNonce": true
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Net
|
|
|
|
|
|
|
|
|
|
|
|
### NetAddrsListen
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ID": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
2021-12-28 02:38:12 +00:00
|
|
|
"Addrs": [
|
|
|
|
"/ip4/52.36.61.156/tcp/1347/p2p/12D3KooWFETiESTf1v4PGUvtnxMAcEFMzLZbJGg4tjWfGEimYior"
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-09-03 23:35:53 +00:00
|
|
|
### NetAgentVersion
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"string value"`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### NetAutoNatStatus
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2023-05-10 08:52:55 +00:00
|
|
|
"Reachability": 1,
|
|
|
|
"PublicAddrs": [
|
|
|
|
"string value"
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-09-02 23:31:41 +00:00
|
|
|
### NetBandwidthStats
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"TotalIn": 9,
|
|
|
|
"TotalOut": 9,
|
|
|
|
"RateIn": 12.3,
|
|
|
|
"RateOut": 12.3
|
2020-09-02 23:31:41 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### NetBandwidthStatsByPeer
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"12D3KooWSXmXLJmBR1M7i9RW9GQPNUhZSzXKzxDHWtAgNuJAbyEJ": {
|
|
|
|
"TotalIn": 174000,
|
|
|
|
"TotalOut": 12500,
|
|
|
|
"RateIn": 100,
|
|
|
|
"RateOut": 50
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### NetBandwidthStatsByProtocol
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/fil/hello/1.0.0": {
|
|
|
|
"TotalIn": 174000,
|
|
|
|
"TotalOut": 12500,
|
|
|
|
"RateIn": 100,
|
|
|
|
"RateOut": 50
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-11-16 16:52:55 +00:00
|
|
|
### NetBlockAdd
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2021-12-28 02:38:12 +00:00
|
|
|
"Peers": [
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"
|
|
|
|
],
|
2022-12-23 17:52:49 +00:00
|
|
|
"IPAddrs": [
|
|
|
|
"string value"
|
|
|
|
],
|
|
|
|
"IPSubnets": [
|
|
|
|
"string value"
|
|
|
|
]
|
2020-11-16 16:52:55 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### NetBlockList
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2021-12-28 02:38:12 +00:00
|
|
|
"Peers": [
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"
|
|
|
|
],
|
2022-12-23 17:52:49 +00:00
|
|
|
"IPAddrs": [
|
|
|
|
"string value"
|
|
|
|
],
|
|
|
|
"IPSubnets": [
|
|
|
|
"string value"
|
|
|
|
]
|
2020-11-16 16:52:55 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### NetBlockRemove
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2021-12-28 02:38:12 +00:00
|
|
|
"Peers": [
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"
|
|
|
|
],
|
2022-12-23 17:52:49 +00:00
|
|
|
"IPAddrs": [
|
|
|
|
"string value"
|
|
|
|
],
|
|
|
|
"IPSubnets": [
|
|
|
|
"string value"
|
|
|
|
]
|
2020-11-16 16:52:55 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### NetConnect
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ID": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
2021-12-28 02:38:12 +00:00
|
|
|
"Addrs": [
|
|
|
|
"/ip4/52.36.61.156/tcp/1347/p2p/12D3KooWFETiESTf1v4PGUvtnxMAcEFMzLZbJGg4tjWfGEimYior"
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### NetConnectedness
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `1`
|
|
|
|
|
|
|
|
### NetDisconnect
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### NetFindPeer
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ID": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
2021-12-28 02:38:12 +00:00
|
|
|
"Addrs": [
|
|
|
|
"/ip4/52.36.61.156/tcp/1347/p2p/12D3KooWFETiESTf1v4PGUvtnxMAcEFMzLZbJGg4tjWfGEimYior"
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-01-20 09:44:01 +00:00
|
|
|
### NetLimit
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Memory": 123,
|
|
|
|
"Streams": 3,
|
|
|
|
"StreamsInbound": 1,
|
|
|
|
"StreamsOutbound": 2,
|
|
|
|
"Conns": 4,
|
|
|
|
"ConnsInbound": 3,
|
|
|
|
"ConnsOutbound": 4,
|
|
|
|
"FD": 5
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### NetListening
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `true`
|
|
|
|
|
2021-03-08 12:23:58 +00:00
|
|
|
### NetPeerInfo
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ID": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
2021-03-08 12:23:58 +00:00
|
|
|
"Agent": "string value",
|
2021-12-28 02:38:12 +00:00
|
|
|
"Addrs": [
|
|
|
|
"string value"
|
|
|
|
],
|
|
|
|
"Protocols": [
|
|
|
|
"string value"
|
|
|
|
],
|
2022-12-23 17:52:49 +00:00
|
|
|
"ConnMgrMeta": {
|
|
|
|
"FirstSeen": "0001-01-01T00:00:00Z",
|
|
|
|
"Value": 123,
|
|
|
|
"Tags": {
|
|
|
|
"name": 42
|
|
|
|
},
|
|
|
|
"Conns": {
|
|
|
|
"name": "2021-03-08T22:52:18Z"
|
|
|
|
}
|
|
|
|
}
|
2021-03-08 12:23:58 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### NetPeers
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ID": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
2021-12-28 02:38:12 +00:00
|
|
|
"Addrs": [
|
|
|
|
"/ip4/52.36.61.156/tcp/1347/p2p/12D3KooWFETiESTf1v4PGUvtnxMAcEFMzLZbJGg4tjWfGEimYior"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2022-02-17 09:10:28 +00:00
|
|
|
### NetPing
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `60000000000`
|
|
|
|
|
2022-02-03 16:24:49 +00:00
|
|
|
### NetProtectAdd
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### NetProtectList
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
### NetProtectRemove
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
"12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf"
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### NetPubsubScores
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ID": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
2021-12-28 02:38:12 +00:00
|
|
|
"Score": {
|
|
|
|
"Score": 12.3,
|
|
|
|
"Topics": {
|
|
|
|
"/blocks": {
|
|
|
|
"TimeInMesh": 60000000000,
|
|
|
|
"FirstMessageDeliveries": 122,
|
|
|
|
"MeshMessageDeliveries": 1234,
|
|
|
|
"InvalidMessageDeliveries": 3
|
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"AppSpecificScore": 12.3,
|
|
|
|
"IPColocationFactor": 12.3,
|
|
|
|
"BehaviourPenalty": 12.3
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2022-01-20 09:44:01 +00:00
|
|
|
### NetSetLimit
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value",
|
|
|
|
{
|
|
|
|
"Memory": 123,
|
|
|
|
"Streams": 3,
|
|
|
|
"StreamsInbound": 1,
|
|
|
|
"StreamsOutbound": 2,
|
|
|
|
"Conns": 4,
|
|
|
|
"ConnsInbound": 3,
|
|
|
|
"ConnsOutbound": 4,
|
|
|
|
"FD": 5
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### NetStat
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"System": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"NumStreamsInbound": 123,
|
|
|
|
"NumStreamsOutbound": 123,
|
|
|
|
"NumConnsInbound": 123,
|
|
|
|
"NumConnsOutbound": 123,
|
|
|
|
"NumFD": 123,
|
2022-01-20 09:44:01 +00:00
|
|
|
"Memory": 9
|
|
|
|
},
|
|
|
|
"Transient": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"NumStreamsInbound": 123,
|
|
|
|
"NumStreamsOutbound": 123,
|
|
|
|
"NumConnsInbound": 123,
|
|
|
|
"NumConnsOutbound": 123,
|
|
|
|
"NumFD": 123,
|
2022-01-20 09:44:01 +00:00
|
|
|
"Memory": 9
|
|
|
|
},
|
|
|
|
"Services": {
|
|
|
|
"abc": {
|
|
|
|
"NumStreamsInbound": 1,
|
|
|
|
"NumStreamsOutbound": 2,
|
|
|
|
"NumConnsInbound": 3,
|
|
|
|
"NumConnsOutbound": 4,
|
|
|
|
"NumFD": 5,
|
|
|
|
"Memory": 123
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"Protocols": {
|
|
|
|
"abc": {
|
|
|
|
"NumStreamsInbound": 1,
|
|
|
|
"NumStreamsOutbound": 2,
|
|
|
|
"NumConnsInbound": 3,
|
|
|
|
"NumConnsOutbound": 4,
|
|
|
|
"NumFD": 5,
|
|
|
|
"Memory": 123
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"Peers": {
|
|
|
|
"abc": {
|
|
|
|
"NumStreamsInbound": 1,
|
|
|
|
"NumStreamsOutbound": 2,
|
|
|
|
"NumConnsInbound": 3,
|
|
|
|
"NumConnsOutbound": 4,
|
|
|
|
"NumFD": 5,
|
|
|
|
"Memory": 123
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-01-13 19:11:13 +00:00
|
|
|
### NetVersion
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `"string value"`
|
|
|
|
|
2021-03-10 17:22:35 +00:00
|
|
|
## Node
|
|
|
|
These methods are general node management and status commands
|
|
|
|
|
|
|
|
|
|
|
|
### NodeStatus
|
|
|
|
There are not yet any comments for this method.
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
true
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"SyncStatus": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"Epoch": 42,
|
|
|
|
"Behind": 42
|
2021-03-10 17:22:35 +00:00
|
|
|
},
|
|
|
|
"PeerStatus": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"PeersToPublishMsgs": 123,
|
|
|
|
"PeersToPublishBlocks": 123
|
2021-03-10 17:22:35 +00:00
|
|
|
},
|
|
|
|
"ChainStatus": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"BlocksPerTipsetLast100": 12.3,
|
|
|
|
"BlocksPerTipsetLastFinality": 12.3
|
2021-03-10 17:22:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
## Paych
|
|
|
|
The Paych methods are for interacting with and managing payment channels
|
|
|
|
|
|
|
|
|
|
|
|
### PaychAllocateLane
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `42`
|
|
|
|
|
2020-09-03 23:35:53 +00:00
|
|
|
### PaychAvailableFunds
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-09-03 23:35:53 +00:00
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
2020-09-15 01:44:45 +00:00
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234"
|
2020-09-15 01:44:45 +00:00
|
|
|
]
|
|
|
|
```
|
2020-09-05 19:51:30 +00:00
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2023-05-30 05:25:06 +00:00
|
|
|
"Channel": "f01234",
|
2020-10-06 07:30:40 +00:00
|
|
|
"From": "f01234",
|
|
|
|
"To": "f01234",
|
2020-09-05 19:51:30 +00:00
|
|
|
"ConfirmedAmt": "0",
|
|
|
|
"PendingAmt": "0",
|
2022-02-16 19:39:43 +00:00
|
|
|
"NonReservedAmt": "0",
|
2022-01-04 23:17:03 +00:00
|
|
|
"PendingAvailableAmt": "0",
|
2023-01-13 19:11:13 +00:00
|
|
|
"PendingWaitSentinel": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-09-05 19:51:30 +00:00
|
|
|
"QueuedAmt": "0",
|
|
|
|
"VoucherReedeemedAmt": "0"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### PaychAvailableFundsByFromTo
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-09-05 19:51:30 +00:00
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
2020-09-03 23:35:53 +00:00
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234"
|
2020-09-03 23:35:53 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2023-05-30 05:25:06 +00:00
|
|
|
"Channel": "f01234",
|
2020-10-06 07:30:40 +00:00
|
|
|
"From": "f01234",
|
|
|
|
"To": "f01234",
|
2020-09-03 23:35:53 +00:00
|
|
|
"ConfirmedAmt": "0",
|
|
|
|
"PendingAmt": "0",
|
2022-02-16 19:39:43 +00:00
|
|
|
"NonReservedAmt": "0",
|
2022-01-04 23:17:03 +00:00
|
|
|
"PendingAvailableAmt": "0",
|
2023-01-13 19:11:13 +00:00
|
|
|
"PendingWaitSentinel": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-09-03 23:35:53 +00:00
|
|
|
"QueuedAmt": "0",
|
|
|
|
"VoucherReedeemedAmt": "0"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### PaychCollect
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-02-14 18:56:02 +00:00
|
|
|
### PaychFund
|
|
|
|
PaychFund gets or creates a payment channel between address pair.
|
|
|
|
The specified amount will be added to the channel through on-chain send for future use
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"0"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2020-10-06 07:30:40 +00:00
|
|
|
"Channel": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"WaitSentinel": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### PaychGet
|
2022-01-04 20:34:27 +00:00
|
|
|
PaychGet gets or creates a payment channel between address pair
|
2022-02-14 18:56:02 +00:00
|
|
|
The specified amount will be reserved for use. If there aren't enough non-reserved funds
|
2022-01-04 20:34:27 +00:00
|
|
|
available, funds will be added through an on-chain message.
|
2022-01-06 15:04:39 +00:00
|
|
|
- When opts.OffChain is true, this call will not cause any messages to be sent to the chain (no automatic
|
|
|
|
channel creation/funds adding). If the operation can't be performed without sending a message an error will be
|
|
|
|
returned. Note that even when this option is specified, this call can be blocked by previous operations on the
|
|
|
|
channel waiting for on-chain operations.
|
2022-01-04 20:34:27 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
2022-01-04 20:34:27 +00:00
|
|
|
"0",
|
2022-01-06 15:04:39 +00:00
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"OffChain": true
|
2022-01-06 15:04:39 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2020-10-06 07:30:40 +00:00
|
|
|
"Channel": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"WaitSentinel": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### PaychGetWaitReady
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-10-06 07:30:40 +00:00
|
|
|
Response: `"f01234"`
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### PaychList
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234"
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### PaychNewPayment
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
|
|
|
"f01234",
|
2021-12-28 02:38:12 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"Amount": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"TimeLockMin": 10101,
|
|
|
|
"TimeLockMax": 10101,
|
|
|
|
"MinSettle": 10101,
|
2021-12-28 02:38:12 +00:00
|
|
|
"Extra": {
|
|
|
|
"Actor": "f01234",
|
|
|
|
"Method": 1,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2020-10-06 07:30:40 +00:00
|
|
|
"Channel": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"WaitSentinel": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2021-12-28 02:38:12 +00:00
|
|
|
"Vouchers": [
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ChannelAddr": "f01234",
|
|
|
|
"TimeLockMin": 10101,
|
|
|
|
"TimeLockMax": 10101,
|
|
|
|
"SecretHash": "Ynl0ZSBhcnJheQ==",
|
2021-12-28 02:38:12 +00:00
|
|
|
"Extra": {
|
|
|
|
"Actor": "f01234",
|
|
|
|
"Method": 1,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42,
|
|
|
|
"Amount": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"MinSettleHeight": 10101,
|
2021-12-28 02:38:12 +00:00
|
|
|
"Merges": [
|
|
|
|
{
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### PaychSettle
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### PaychStatus
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ControlAddr": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Direction": 1
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### PaychVoucherAdd
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ChannelAddr": "f01234",
|
|
|
|
"TimeLockMin": 10101,
|
|
|
|
"TimeLockMax": 10101,
|
|
|
|
"SecretHash": "Ynl0ZSBhcnJheQ==",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Extra": {
|
2020-10-06 07:30:40 +00:00
|
|
|
"Actor": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Method": 1,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42,
|
|
|
|
"Amount": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"MinSettleHeight": 10101,
|
2021-12-28 02:38:12 +00:00
|
|
|
"Merges": [
|
|
|
|
{
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42
|
|
|
|
}
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"Ynl0ZSBhcnJheQ==",
|
|
|
|
"0"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
|
|
|
### PaychVoucherCheckSpendable
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ChannelAddr": "f01234",
|
|
|
|
"TimeLockMin": 10101,
|
|
|
|
"TimeLockMax": 10101,
|
|
|
|
"SecretHash": "Ynl0ZSBhcnJheQ==",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Extra": {
|
2020-10-06 07:30:40 +00:00
|
|
|
"Actor": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Method": 1,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42,
|
|
|
|
"Amount": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"MinSettleHeight": 10101,
|
2021-12-28 02:38:12 +00:00
|
|
|
"Merges": [
|
|
|
|
{
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42
|
|
|
|
}
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"Ynl0ZSBhcnJheQ==",
|
|
|
|
"Ynl0ZSBhcnJheQ=="
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `true`
|
|
|
|
|
|
|
|
### PaychVoucherCheckValid
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ChannelAddr": "f01234",
|
|
|
|
"TimeLockMin": 10101,
|
|
|
|
"TimeLockMax": 10101,
|
|
|
|
"SecretHash": "Ynl0ZSBhcnJheQ==",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Extra": {
|
2020-10-06 07:30:40 +00:00
|
|
|
"Actor": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Method": 1,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42,
|
|
|
|
"Amount": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"MinSettleHeight": 10101,
|
2021-12-28 02:38:12 +00:00
|
|
|
"Merges": [
|
|
|
|
{
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42
|
|
|
|
}
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### PaychVoucherCreate
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"0",
|
|
|
|
42
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2020-09-03 23:35:53 +00:00
|
|
|
"Voucher": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"ChannelAddr": "f01234",
|
|
|
|
"TimeLockMin": 10101,
|
|
|
|
"TimeLockMax": 10101,
|
|
|
|
"SecretHash": "Ynl0ZSBhcnJheQ==",
|
2020-09-03 23:35:53 +00:00
|
|
|
"Extra": {
|
2020-10-06 07:30:40 +00:00
|
|
|
"Actor": "f01234",
|
2020-09-03 23:35:53 +00:00
|
|
|
"Method": 1,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42,
|
|
|
|
"Amount": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"MinSettleHeight": 10101,
|
2021-12-28 02:38:12 +00:00
|
|
|
"Merges": [
|
|
|
|
{
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42
|
|
|
|
}
|
|
|
|
],
|
2020-09-03 23:35:53 +00:00
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
2020-09-03 23:35:53 +00:00
|
|
|
"Shortfall": "0"
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### PaychVoucherList
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ChannelAddr": "f01234",
|
|
|
|
"TimeLockMin": 10101,
|
|
|
|
"TimeLockMax": 10101,
|
|
|
|
"SecretHash": "Ynl0ZSBhcnJheQ==",
|
2021-12-28 02:38:12 +00:00
|
|
|
"Extra": {
|
|
|
|
"Actor": "f01234",
|
|
|
|
"Method": 1,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42,
|
|
|
|
"Amount": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"MinSettleHeight": 10101,
|
2021-12-28 02:38:12 +00:00
|
|
|
"Merges": [
|
|
|
|
{
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### PaychVoucherSubmit
|
2021-03-23 12:42:56 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ChannelAddr": "f01234",
|
|
|
|
"TimeLockMin": 10101,
|
|
|
|
"TimeLockMax": 10101,
|
|
|
|
"SecretHash": "Ynl0ZSBhcnJheQ==",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Extra": {
|
2020-10-06 07:30:40 +00:00
|
|
|
"Actor": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Method": 1,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42,
|
|
|
|
"Amount": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"MinSettleHeight": 10101,
|
2021-12-28 02:38:12 +00:00
|
|
|
"Merges": [
|
|
|
|
{
|
|
|
|
"Lane": 42,
|
|
|
|
"Nonce": 42
|
|
|
|
}
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
2020-08-28 20:03:09 +00:00
|
|
|
},
|
|
|
|
"Ynl0ZSBhcnJheQ==",
|
|
|
|
"Ynl0ZSBhcnJheQ=="
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-10-05 19:44:55 +00:00
|
|
|
## Start
|
|
|
|
|
|
|
|
|
|
|
|
### StartTime
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `"0001-01-01T00:00:00Z"`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
## State
|
|
|
|
The State methods are used to query, inspect, and interact with chain state.
|
2020-10-26 17:46:41 +00:00
|
|
|
Most methods take a TipSetKey as a parameter. The state looked up is the parent state of the tipset.
|
2020-08-24 10:25:49 +00:00
|
|
|
A nil TipSetKey can be provided as a param, this will cause the heaviest tipset in the chain to be used.
|
|
|
|
|
|
|
|
|
|
|
|
### StateAccountKey
|
2022-04-14 21:30:07 +00:00
|
|
|
StateAccountKey returns the public key address of the given ID address for secp and bls accounts
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-10-06 07:30:40 +00:00
|
|
|
Response: `"f01234"`
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2022-06-23 18:05:20 +00:00
|
|
|
### StateActorCodeCIDs
|
2022-06-23 18:17:41 +00:00
|
|
|
StateActorCodeCIDs returns the CIDs of all the builtin actors for the given network version
|
2022-06-23 18:05:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
22
|
2022-06-23 18:05:20 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2022-08-22 21:10:03 +00:00
|
|
|
### StateActorManifestCID
|
|
|
|
StateActorManifestCID returns the CID of the builtin actors manifest for the given network version
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
22
|
2022-08-22 21:10:03 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### StateAllMinerFaults
|
|
|
|
StateAllMinerFaults returns all non-expired Faults that occur within lookback epochs of the given tipset
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
10101,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Miner": "f01234",
|
|
|
|
"Epoch": 10101
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### StateCall
|
|
|
|
StateCall runs the given message and returns its result without any persisted changes.
|
|
|
|
|
2020-10-26 17:46:41 +00:00
|
|
|
StateCall applies the message to the tipset's parent state. The
|
|
|
|
message is not applied on-top-of the messages in the passed-in
|
|
|
|
tipset.
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"MsgCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"Msg": {
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"MsgRct": {
|
|
|
|
"ExitCode": 0,
|
|
|
|
"Return": "Ynl0ZSBhcnJheQ==",
|
2023-01-13 19:11:13 +00:00
|
|
|
"GasUsed": 9,
|
|
|
|
"EventsRoot": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
2020-10-16 01:00:47 +00:00
|
|
|
"GasCost": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"Message": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-10-16 01:00:47 +00:00
|
|
|
"GasUsed": "0",
|
|
|
|
"BaseFeeBurn": "0",
|
|
|
|
"OverEstimationBurn": "0",
|
|
|
|
"MinerPenalty": "0",
|
|
|
|
"MinerTip": "0",
|
|
|
|
"Refund": "0",
|
|
|
|
"TotalCost": "0"
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"ExecutionTrace": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"Msg": {
|
|
|
|
"From": "f01234",
|
2023-03-02 00:02:18 +00:00
|
|
|
"To": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"Value": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
2023-07-24 14:55:42 +00:00
|
|
|
"ParamsCodec": 42,
|
|
|
|
"GasLimit": 42,
|
2024-02-07 01:22:14 +00:00
|
|
|
"ReadOnly": true
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
|
|
|
"MsgRct": {
|
|
|
|
"ExitCode": 0,
|
|
|
|
"Return": "Ynl0ZSBhcnJheQ==",
|
2023-03-02 00:02:18 +00:00
|
|
|
"ReturnCodec": 42
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
2024-02-07 01:22:14 +00:00
|
|
|
"InvokedActor": {
|
|
|
|
"Id": 1000,
|
|
|
|
"State": {
|
|
|
|
"Code": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Head": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Nonce": 42,
|
|
|
|
"Balance": "0",
|
|
|
|
"Address": "f01234"
|
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasCharges": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"tg": 9,
|
|
|
|
"cg": 9,
|
|
|
|
"sg": 9,
|
2023-03-02 00:02:18 +00:00
|
|
|
"tt": 60000000000
|
2022-12-23 17:52:49 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"Subcalls": [
|
|
|
|
{
|
|
|
|
"Msg": {
|
|
|
|
"From": "f01234",
|
2023-03-02 00:02:18 +00:00
|
|
|
"To": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"Value": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
2023-07-24 14:55:42 +00:00
|
|
|
"ParamsCodec": 42,
|
|
|
|
"GasLimit": 42,
|
2024-02-07 01:22:14 +00:00
|
|
|
"ReadOnly": true
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
|
|
|
"MsgRct": {
|
|
|
|
"ExitCode": 0,
|
|
|
|
"Return": "Ynl0ZSBhcnJheQ==",
|
2023-03-02 00:02:18 +00:00
|
|
|
"ReturnCodec": 42
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
2024-02-07 01:22:14 +00:00
|
|
|
"InvokedActor": {
|
|
|
|
"Id": 1000,
|
|
|
|
"State": {
|
|
|
|
"Code": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Head": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Nonce": 42,
|
|
|
|
"Balance": "0",
|
|
|
|
"Address": "f01234"
|
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasCharges": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"tg": 9,
|
|
|
|
"cg": 9,
|
|
|
|
"sg": 9,
|
2023-03-02 00:02:18 +00:00
|
|
|
"tt": 60000000000
|
2022-12-23 17:52:49 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"Subcalls": null
|
|
|
|
}
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
"Error": "string value",
|
|
|
|
"Duration": 60000000000
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateChangedActors
|
|
|
|
StateChangedActors returns all the actors whose states change between the two given state CIDs
|
|
|
|
TODO: Should this take tipset keys instead?
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"t01236": {
|
|
|
|
"Code": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Head": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Nonce": 42,
|
2022-11-09 08:45:11 +00:00
|
|
|
"Balance": "0",
|
2023-05-30 05:25:06 +00:00
|
|
|
"Address": "f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateCirculatingSupply
|
2020-10-11 22:17:28 +00:00
|
|
|
StateCirculatingSupply returns the exact circulating supply of Filecoin at the given tipset.
|
|
|
|
This is not used anywhere in the protocol itself, and is only for external consumption.
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-10-11 22:17:28 +00:00
|
|
|
Response: `"0"`
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### StateCompute
|
|
|
|
StateCompute is a flexible command that applies the given messages on the given tipset.
|
|
|
|
The messages are run as though the VM were at the provided height.
|
|
|
|
|
2021-03-19 11:57:59 +00:00
|
|
|
When called, StateCompute will:
|
|
|
|
- Load the provided tipset, or use the current chain head if not provided
|
|
|
|
- Compute the tipset state of the provided tipset on top of the parent state
|
|
|
|
- (note that this step runs before vmheight is applied to the execution)
|
|
|
|
- Execute state upgrade if any were scheduled at the epoch, or in null
|
|
|
|
blocks preceding the tipset
|
|
|
|
- Call the cron actor on null blocks preceding the tipset
|
|
|
|
- For each block in the tipset
|
|
|
|
- Apply messages in blocks in the specified
|
|
|
|
- Award block reward by calling the reward actor
|
|
|
|
- Call the cron actor for the current epoch
|
|
|
|
- If the specified vmheight is higher than the current epoch, apply any
|
|
|
|
needed state upgrades to the state
|
|
|
|
- Apply the specified messages to the state
|
|
|
|
|
|
|
|
The vmheight parameter sets VM execution epoch, and can be used to simulate
|
|
|
|
message execution in different network versions. If the specified vmheight
|
|
|
|
epoch is higher than the epoch of the specified tipset, any state upgrades
|
|
|
|
until the vmheight will be executed on the state before applying messages
|
|
|
|
specified by the user.
|
|
|
|
|
|
|
|
Note that the initial tipset state computation is not affected by the
|
|
|
|
vmheight parameter - only the messages in the `apply` set are
|
|
|
|
|
|
|
|
If the caller wants to simply compute the state, vmheight should be set to
|
|
|
|
the epoch of the specified tipset.
|
|
|
|
|
|
|
|
Messages in the `apply` parameter must have the correct nonces, and gas
|
|
|
|
values set.
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
10101,
|
2021-12-28 02:38:12 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Root": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2021-12-28 02:38:12 +00:00
|
|
|
"Trace": [
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"MsgCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2021-12-28 02:38:12 +00:00
|
|
|
"Msg": {
|
|
|
|
"Version": 42,
|
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"MsgRct": {
|
|
|
|
"ExitCode": 0,
|
|
|
|
"Return": "Ynl0ZSBhcnJheQ==",
|
2023-01-13 19:11:13 +00:00
|
|
|
"GasUsed": 9,
|
|
|
|
"EventsRoot": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasCost": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"Message": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2021-12-28 02:38:12 +00:00
|
|
|
"GasUsed": "0",
|
|
|
|
"BaseFeeBurn": "0",
|
|
|
|
"OverEstimationBurn": "0",
|
|
|
|
"MinerPenalty": "0",
|
|
|
|
"MinerTip": "0",
|
|
|
|
"Refund": "0",
|
|
|
|
"TotalCost": "0"
|
|
|
|
},
|
|
|
|
"ExecutionTrace": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"Msg": {
|
|
|
|
"From": "f01234",
|
2023-03-02 00:02:18 +00:00
|
|
|
"To": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"Value": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
2023-07-24 14:55:42 +00:00
|
|
|
"ParamsCodec": 42,
|
|
|
|
"GasLimit": 42,
|
2024-02-07 01:22:14 +00:00
|
|
|
"ReadOnly": true
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
|
|
|
"MsgRct": {
|
|
|
|
"ExitCode": 0,
|
|
|
|
"Return": "Ynl0ZSBhcnJheQ==",
|
2023-03-02 00:02:18 +00:00
|
|
|
"ReturnCodec": 42
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
2024-02-07 01:22:14 +00:00
|
|
|
"InvokedActor": {
|
|
|
|
"Id": 1000,
|
|
|
|
"State": {
|
|
|
|
"Code": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Head": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Nonce": 42,
|
|
|
|
"Balance": "0",
|
|
|
|
"Address": "f01234"
|
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasCharges": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"tg": 9,
|
|
|
|
"cg": 9,
|
|
|
|
"sg": 9,
|
2023-03-02 00:02:18 +00:00
|
|
|
"tt": 60000000000
|
2022-12-23 17:52:49 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"Subcalls": [
|
|
|
|
{
|
|
|
|
"Msg": {
|
|
|
|
"From": "f01234",
|
2023-03-02 00:02:18 +00:00
|
|
|
"To": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"Value": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
2023-07-24 14:55:42 +00:00
|
|
|
"ParamsCodec": 42,
|
|
|
|
"GasLimit": 42,
|
2024-02-07 01:22:14 +00:00
|
|
|
"ReadOnly": true
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
|
|
|
"MsgRct": {
|
|
|
|
"ExitCode": 0,
|
|
|
|
"Return": "Ynl0ZSBhcnJheQ==",
|
2023-03-02 00:02:18 +00:00
|
|
|
"ReturnCodec": 42
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
2024-02-07 01:22:14 +00:00
|
|
|
"InvokedActor": {
|
|
|
|
"Id": 1000,
|
|
|
|
"State": {
|
|
|
|
"Code": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Head": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Nonce": 42,
|
|
|
|
"Balance": "0",
|
|
|
|
"Address": "f01234"
|
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasCharges": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"tg": 9,
|
|
|
|
"cg": 9,
|
|
|
|
"sg": 9,
|
2023-03-02 00:02:18 +00:00
|
|
|
"tt": 60000000000
|
2022-12-23 17:52:49 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"Subcalls": null
|
|
|
|
}
|
|
|
|
]
|
2021-12-28 02:38:12 +00:00
|
|
|
},
|
|
|
|
"Error": "string value",
|
|
|
|
"Duration": 60000000000
|
|
|
|
}
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-06-16 11:26:50 +00:00
|
|
|
### StateComputeDataCID
|
|
|
|
StateComputeDataCID computes DataCID from a set of on-chain deals
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
8,
|
|
|
|
[
|
|
|
|
5432
|
|
|
|
],
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### StateDealProviderCollateralBounds
|
|
|
|
StateDealProviderCollateralBounds returns the min and max collateral a storage provider
|
|
|
|
can issue. It takes the deal size and verified status as parameters.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
1032,
|
|
|
|
true,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Min": "0",
|
|
|
|
"Max": "0"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-09-29 07:01:52 +00:00
|
|
|
### StateDecodeParams
|
|
|
|
StateDecodeParams attempts to decode the provided params, based on the recipient actor address and method number.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
1,
|
|
|
|
"Ynl0ZSBhcnJheQ==",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2021-08-20 15:31:01 +00:00
|
|
|
### StateEncodeParams
|
|
|
|
StateEncodeParams attempts to encode the provided json params to the binary from
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
1,
|
2021-12-28 02:38:12 +00:00
|
|
|
"json raw message"
|
2021-08-20 15:31:01 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"Ynl0ZSBhcnJheQ=="`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### StateGetActor
|
|
|
|
StateGetActor returns the indicated actor's nonce and balance.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Code": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Head": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Nonce": 42,
|
2022-11-09 08:45:11 +00:00
|
|
|
"Balance": "0",
|
2023-05-30 05:25:06 +00:00
|
|
|
"Address": "f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
### StateGetAllAllocations
|
|
|
|
StateGetAllAllocations returns the all the allocations available in verified registry actor.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### StateGetAllClaims
|
|
|
|
StateGetAllClaims returns the all the claims available in verified registry actor.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2022-10-03 05:51:30 +00:00
|
|
|
### StateGetAllocation
|
2022-10-05 18:43:16 +00:00
|
|
|
StateGetAllocation returns the allocation for a given address and allocation ID.
|
2022-10-03 05:51:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
0,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Client": 1000,
|
|
|
|
"Provider": 1000,
|
|
|
|
"Data": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Size": 1032,
|
2022-12-23 17:52:49 +00:00
|
|
|
"TermMin": 10101,
|
|
|
|
"TermMax": 10101,
|
2022-10-03 05:51:30 +00:00
|
|
|
"Expiration": 10101
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-10-05 18:43:16 +00:00
|
|
|
### StateGetAllocationForPendingDeal
|
2022-10-10 17:31:48 +00:00
|
|
|
StateGetAllocationForPendingDeal returns the allocation for a given deal ID of a pending deal. Returns nil if
|
|
|
|
pending allocation is not found.
|
2022-10-03 05:51:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
5432,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Client": 1000,
|
|
|
|
"Provider": 1000,
|
|
|
|
"Data": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Size": 1032,
|
2022-12-23 17:52:49 +00:00
|
|
|
"TermMin": 10101,
|
|
|
|
"TermMax": 10101,
|
2022-10-03 05:51:30 +00:00
|
|
|
"Expiration": 10101
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
### StateGetAllocationIdForPendingDeal
|
|
|
|
StateGetAllocationIdForPendingDeal is like StateGetAllocationForPendingDeal except it returns the allocation ID
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
5432,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `0`
|
|
|
|
|
2022-10-05 22:45:43 +00:00
|
|
|
### StateGetAllocations
|
|
|
|
StateGetAllocations returns the all the allocations for a given client.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2021-09-27 01:23:41 +00:00
|
|
|
### StateGetBeaconEntry
|
|
|
|
StateGetBeaconEntry returns the beacon entry for the given filecoin epoch. If
|
|
|
|
the entry has not yet been produced, the call will block until the entry
|
|
|
|
becomes available
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
10101
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Round": 42,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-10-05 22:45:43 +00:00
|
|
|
### StateGetClaim
|
|
|
|
StateGetClaim returns the claim for a given address and claim ID.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
0,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Provider": 1000,
|
|
|
|
"Client": 1000,
|
|
|
|
"Data": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Size": 1032,
|
2022-12-23 17:52:49 +00:00
|
|
|
"TermMin": 10101,
|
|
|
|
"TermMax": 10101,
|
|
|
|
"TermStart": 10101,
|
2022-10-05 22:45:43 +00:00
|
|
|
"Sector": 9
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateGetClaims
|
|
|
|
StateGetClaims returns the all the claims for a given provider.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2022-04-24 05:48:07 +00:00
|
|
|
### StateGetNetworkParams
|
|
|
|
StateGetNetworkParams return current network params
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"NetworkName": "lotus",
|
|
|
|
"BlockDelaySecs": 42,
|
2022-04-24 05:48:07 +00:00
|
|
|
"ConsensusMinerMinPower": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"SupportedProofTypes": [
|
|
|
|
8
|
|
|
|
],
|
|
|
|
"PreCommitChallengeDelay": 10101,
|
2022-04-24 05:48:07 +00:00
|
|
|
"ForkUpgradeParams": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"UpgradeSmokeHeight": 10101,
|
|
|
|
"UpgradeBreezeHeight": 10101,
|
|
|
|
"UpgradeIgnitionHeight": 10101,
|
|
|
|
"UpgradeLiftoffHeight": 10101,
|
|
|
|
"UpgradeAssemblyHeight": 10101,
|
|
|
|
"UpgradeRefuelHeight": 10101,
|
|
|
|
"UpgradeTapeHeight": 10101,
|
|
|
|
"UpgradeKumquatHeight": 10101,
|
|
|
|
"BreezeGasTampingDuration": 10101,
|
|
|
|
"UpgradeCalicoHeight": 10101,
|
|
|
|
"UpgradePersianHeight": 10101,
|
|
|
|
"UpgradeOrangeHeight": 10101,
|
|
|
|
"UpgradeClausHeight": 10101,
|
|
|
|
"UpgradeTrustHeight": 10101,
|
|
|
|
"UpgradeNorwegianHeight": 10101,
|
|
|
|
"UpgradeTurboHeight": 10101,
|
|
|
|
"UpgradeHyperdriveHeight": 10101,
|
|
|
|
"UpgradeChocolateHeight": 10101,
|
|
|
|
"UpgradeOhSnapHeight": 10101,
|
|
|
|
"UpgradeSkyrHeight": 10101,
|
2023-01-13 19:11:13 +00:00
|
|
|
"UpgradeSharkHeight": 10101,
|
2023-04-19 22:40:18 +00:00
|
|
|
"UpgradeHyggeHeight": 10101,
|
|
|
|
"UpgradeLightningHeight": 10101,
|
2023-07-07 09:56:30 +00:00
|
|
|
"UpgradeThunderHeight": 10101,
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
"UpgradeWatermelonHeight": 10101,
|
|
|
|
"UpgradeDragonHeight": 10101,
|
|
|
|
"UpgradePhoenixHeight": 10101
|
2023-06-15 05:59:47 +00:00
|
|
|
},
|
|
|
|
"Eip155ChainID": 123
|
2022-04-24 05:48:07 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-08-16 15:55:37 +00:00
|
|
|
### StateGetRandomnessDigestFromBeacon
|
2023-08-21 21:09:44 +00:00
|
|
|
StateGetRandomnessDigestFromBeacon is used to sample the beacon for randomness.
|
2023-08-16 15:55:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
10101,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"Bw=="`
|
|
|
|
|
|
|
|
### StateGetRandomnessDigestFromTickets
|
2023-08-21 21:09:44 +00:00
|
|
|
StateGetRandomnessDigestFromTickets. is used to sample the chain for randomness.
|
2023-08-16 15:55:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
10101,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"Bw=="`
|
|
|
|
|
2021-09-12 02:24:53 +00:00
|
|
|
### StateGetRandomnessFromBeacon
|
|
|
|
StateGetRandomnessFromBeacon is used to sample the beacon for randomness.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
2,
|
|
|
|
10101,
|
|
|
|
"Ynl0ZSBhcnJheQ==",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response: `"Bw=="`
|
2021-09-12 02:24:53 +00:00
|
|
|
|
|
|
|
### StateGetRandomnessFromTickets
|
|
|
|
StateGetRandomnessFromTickets is used to sample the chain for randomness.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
2,
|
|
|
|
10101,
|
|
|
|
"Ynl0ZSBhcnJheQ==",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response: `"Bw=="`
|
2021-09-12 02:24:53 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### StateListActors
|
|
|
|
StateListActors returns the addresses of every actor in the state
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234"
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### StateListMessages
|
|
|
|
StateListMessages looks back and returns all messages with a matching to or from address, stopping at the given height.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
2020-10-15 19:07:41 +00:00
|
|
|
"From": "f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
10101
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### StateListMiners
|
|
|
|
StateListMiners returns the addresses of every miner that has claimed power in the Power Actor
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234"
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### StateLookupID
|
|
|
|
StateLookupID retrieves the ID address of the given address
|
|
|
|
|
|
|
|
|
2022-04-14 21:30:07 +00:00
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"f01234"`
|
|
|
|
|
|
|
|
### StateLookupRobustAddress
|
|
|
|
StateLookupRobustAddress returns the public key address of the given ID address for non-account addresses (multisig, miners etc)
|
|
|
|
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-10-06 07:30:40 +00:00
|
|
|
Response: `"f01234"`
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### StateMarketBalance
|
|
|
|
StateMarketBalance looks up the Escrow and Locked balances of the given address in the Storage Market
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Escrow": "0",
|
|
|
|
"Locked": "0"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateMarketDeals
|
|
|
|
StateMarketDeals returns information about every deal in the Storage Market
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"t026363": {
|
|
|
|
"Proposal": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"PieceCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"PieceSize": 1032,
|
|
|
|
"VerifiedDeal": true,
|
2020-10-06 07:30:40 +00:00
|
|
|
"Client": "f01234",
|
|
|
|
"Provider": "f01234",
|
2022-04-26 15:36:22 +00:00
|
|
|
"Label": "",
|
2022-12-23 17:52:49 +00:00
|
|
|
"StartEpoch": 10101,
|
|
|
|
"EndEpoch": 10101,
|
2020-08-24 10:25:49 +00:00
|
|
|
"StoragePricePerEpoch": "0",
|
|
|
|
"ProviderCollateral": "0",
|
|
|
|
"ClientCollateral": "0"
|
|
|
|
},
|
|
|
|
"State": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"SectorStartEpoch": 10101,
|
|
|
|
"LastUpdatedEpoch": 10101,
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
"SlashEpoch": 10101
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateMarketParticipants
|
|
|
|
StateMarketParticipants returns the Escrow and Locked balances of every participant in the Storage Market
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"t026363": {
|
|
|
|
"Escrow": "0",
|
|
|
|
"Locked": "0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateMarketStorageDeal
|
|
|
|
StateMarketStorageDeal returns information about the indicated deal
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
5432,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Proposal": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"PieceCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"PieceSize": 1032,
|
|
|
|
"VerifiedDeal": true,
|
2020-10-06 07:30:40 +00:00
|
|
|
"Client": "f01234",
|
|
|
|
"Provider": "f01234",
|
2022-04-26 15:36:22 +00:00
|
|
|
"Label": "",
|
2022-12-23 17:52:49 +00:00
|
|
|
"StartEpoch": 10101,
|
|
|
|
"EndEpoch": 10101,
|
2020-08-24 10:25:49 +00:00
|
|
|
"StoragePricePerEpoch": "0",
|
|
|
|
"ProviderCollateral": "0",
|
|
|
|
"ClientCollateral": "0"
|
|
|
|
},
|
|
|
|
"State": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"SectorStartEpoch": 10101,
|
|
|
|
"LastUpdatedEpoch": 10101,
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
"SlashEpoch": 10101
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateMinerActiveSectors
|
|
|
|
StateMinerActiveSectors returns info about sectors that a given miner is actively proving.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"SectorNumber": 9,
|
|
|
|
"SealProof": 8,
|
|
|
|
"SealedCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"DealIDs": [
|
|
|
|
5432
|
|
|
|
],
|
2021-12-28 02:38:12 +00:00
|
|
|
"Activation": 10101,
|
|
|
|
"Expiration": 10101,
|
|
|
|
"DealWeight": "0",
|
|
|
|
"VerifiedDealWeight": "0",
|
|
|
|
"InitialPledge": "0",
|
|
|
|
"ExpectedDayReward": "0",
|
|
|
|
"ExpectedStoragePledge": "0",
|
2024-01-10 22:50:33 +00:00
|
|
|
"PowerBaseEpoch": 10101,
|
2022-04-20 21:34:28 +00:00
|
|
|
"ReplacedDayReward": "0",
|
2023-01-13 19:11:13 +00:00
|
|
|
"SectorKeyCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2024-01-10 22:50:33 +00:00
|
|
|
"Flags": 0
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2022-08-22 18:41:56 +00:00
|
|
|
### StateMinerAllocated
|
|
|
|
StateMinerAllocated returns a bitfield containing all sector numbers marked as allocated in miner state
|
|
|
|
|
|
|
|
|
2022-08-22 21:36:24 +00:00
|
|
|
Perms: read
|
2022-08-22 18:41:56 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
0
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### StateMinerAvailableBalance
|
|
|
|
StateMinerAvailableBalance returns the portion of a miner's balance that can be withdrawn or spent
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
|
|
|
### StateMinerDeadlines
|
|
|
|
StateMinerDeadlines returns all the proving deadlines for the given miner
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"PostSubmissions": [
|
2022-12-23 17:52:49 +00:00
|
|
|
5,
|
|
|
|
1
|
2021-12-28 02:38:12 +00:00
|
|
|
],
|
2022-12-23 17:52:49 +00:00
|
|
|
"DisputableProofCount": 42
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### StateMinerFaults
|
|
|
|
StateMinerFaults returns a bitfield indicating the faulty sectors of the given miner
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
5,
|
|
|
|
1
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateMinerInfo
|
|
|
|
StateMinerInfo returns info about the indicated miner
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2020-10-06 07:30:40 +00:00
|
|
|
"Owner": "f01234",
|
|
|
|
"Worker": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"NewWorker": "f01234",
|
|
|
|
"ControlAddresses": [
|
|
|
|
"f01234"
|
|
|
|
],
|
|
|
|
"WorkerChangeEpoch": 10101,
|
|
|
|
"PeerId": "12D3KooWGzxzKZYveHXtpG6AsrUJBcWxHBFS2HsEoGTxrMLvKXtf",
|
2021-12-28 02:38:12 +00:00
|
|
|
"Multiaddrs": [
|
|
|
|
"Ynl0ZSBhcnJheQ=="
|
|
|
|
],
|
2022-12-23 17:52:49 +00:00
|
|
|
"WindowPoStProofType": 8,
|
|
|
|
"SectorSize": 34359738368,
|
|
|
|
"WindowPoStPartitionSectors": 42,
|
|
|
|
"ConsensusFaultElapsed": 10101,
|
2023-05-30 05:25:06 +00:00
|
|
|
"PendingOwnerAddress": "f01234",
|
2022-09-14 04:19:47 +00:00
|
|
|
"Beneficiary": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"BeneficiaryTerm": {
|
|
|
|
"Quota": "0",
|
|
|
|
"UsedQuota": "0",
|
|
|
|
"Expiration": 10101
|
|
|
|
},
|
|
|
|
"PendingBeneficiaryTerm": {
|
|
|
|
"NewBeneficiary": "f01234",
|
|
|
|
"NewQuota": "0",
|
|
|
|
"NewExpiration": 10101,
|
|
|
|
"ApprovedByBeneficiary": true,
|
|
|
|
"ApprovedByNominee": true
|
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateMinerInitialPledgeCollateral
|
|
|
|
StateMinerInitialPledgeCollateral returns the initial pledge collateral for the specified miner's sector
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"SealProof": 8,
|
|
|
|
"SectorNumber": 9,
|
|
|
|
"SealedCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"SealRandEpoch": 10101,
|
|
|
|
"DealIDs": [
|
|
|
|
5432
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"Expiration": 10101,
|
2023-01-13 19:11:13 +00:00
|
|
|
"UnsealedCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
|
|
|
### StateMinerPartitions
|
2020-09-17 15:31:09 +00:00
|
|
|
StateMinerPartitions returns all partitions in the specified deadline
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
42,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"AllSectors": [
|
2022-12-23 17:52:49 +00:00
|
|
|
5,
|
|
|
|
1
|
2021-12-28 02:38:12 +00:00
|
|
|
],
|
|
|
|
"FaultySectors": [
|
2022-12-23 17:52:49 +00:00
|
|
|
5,
|
|
|
|
1
|
2021-12-28 02:38:12 +00:00
|
|
|
],
|
|
|
|
"RecoveringSectors": [
|
2022-12-23 17:52:49 +00:00
|
|
|
5,
|
|
|
|
1
|
2021-12-28 02:38:12 +00:00
|
|
|
],
|
|
|
|
"LiveSectors": [
|
2022-12-23 17:52:49 +00:00
|
|
|
5,
|
|
|
|
1
|
2021-12-28 02:38:12 +00:00
|
|
|
],
|
|
|
|
"ActiveSectors": [
|
2022-12-23 17:52:49 +00:00
|
|
|
5,
|
|
|
|
1
|
2021-12-28 02:38:12 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### StateMinerPower
|
|
|
|
StateMinerPower returns the power of the indicated miner
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"MinerPower": {
|
|
|
|
"RawBytePower": "0",
|
|
|
|
"QualityAdjPower": "0"
|
|
|
|
},
|
|
|
|
"TotalPower": {
|
|
|
|
"RawBytePower": "0",
|
|
|
|
"QualityAdjPower": "0"
|
2020-09-17 15:31:09 +00:00
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"HasMinPower": true
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateMinerPreCommitDepositForPower
|
|
|
|
StateMinerInitialPledgeCollateral returns the precommit deposit for the specified miner's sector
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"SealProof": 8,
|
|
|
|
"SectorNumber": 9,
|
|
|
|
"SealedCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"SealRandEpoch": 10101,
|
|
|
|
"DealIDs": [
|
|
|
|
5432
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"Expiration": 10101,
|
2023-01-13 19:11:13 +00:00
|
|
|
"UnsealedCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
|
|
|
### StateMinerProvingDeadline
|
|
|
|
StateMinerProvingDeadline calculates the deadline at some epoch for a proving period
|
|
|
|
and returns the deadline-related calculations.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"CurrentEpoch": 10101,
|
|
|
|
"PeriodStart": 10101,
|
2020-08-24 10:25:49 +00:00
|
|
|
"Index": 42,
|
|
|
|
"Open": 10101,
|
|
|
|
"Close": 10101,
|
|
|
|
"Challenge": 10101,
|
2022-12-23 17:52:49 +00:00
|
|
|
"FaultCutoff": 10101,
|
|
|
|
"WPoStPeriodDeadlines": 42,
|
|
|
|
"WPoStProvingPeriod": 10101,
|
|
|
|
"WPoStChallengeWindow": 10101,
|
|
|
|
"WPoStChallengeLookback": 10101,
|
|
|
|
"FaultDeclarationCutoff": 10101
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateMinerRecoveries
|
|
|
|
StateMinerRecoveries returns a bitfield indicating the recovering sectors of the given miner
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
5,
|
|
|
|
1
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-10-18 18:10:39 +00:00
|
|
|
### StateMinerSectorAllocated
|
2022-06-16 12:19:53 +00:00
|
|
|
StateMinerSectorAllocated checks if a sector number is marked as allocated.
|
2020-10-18 18:10:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234",
|
|
|
|
9,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `true`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### StateMinerSectorCount
|
|
|
|
StateMinerSectorCount returns the number of sectors in a miner's sector set and proving set
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2020-09-17 15:31:09 +00:00
|
|
|
"Live": 42,
|
|
|
|
"Active": 42,
|
|
|
|
"Faulty": 42
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateMinerSectors
|
|
|
|
StateMinerSectors returns info about the given miner's sectors. If the filter bitfield is nil, all sectors are included.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
0
|
|
|
|
],
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"SectorNumber": 9,
|
|
|
|
"SealProof": 8,
|
|
|
|
"SealedCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"DealIDs": [
|
|
|
|
5432
|
|
|
|
],
|
2021-12-28 02:38:12 +00:00
|
|
|
"Activation": 10101,
|
|
|
|
"Expiration": 10101,
|
|
|
|
"DealWeight": "0",
|
|
|
|
"VerifiedDealWeight": "0",
|
|
|
|
"InitialPledge": "0",
|
|
|
|
"ExpectedDayReward": "0",
|
|
|
|
"ExpectedStoragePledge": "0",
|
2024-01-10 22:50:33 +00:00
|
|
|
"PowerBaseEpoch": 10101,
|
2022-04-20 21:34:28 +00:00
|
|
|
"ReplacedDayReward": "0",
|
2023-01-13 19:11:13 +00:00
|
|
|
"SectorKeyCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2024-01-10 22:50:33 +00:00
|
|
|
"Flags": 0
|
2021-12-28 02:38:12 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### StateNetworkName
|
|
|
|
StateNetworkName returns the name of the network the node is synced to
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `"lotus"`
|
|
|
|
|
2020-09-17 15:31:09 +00:00
|
|
|
### StateNetworkVersion
|
|
|
|
StateNetworkVersion returns the network version at the given tipset
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
Response: `22`
|
2020-09-17 15:31:09 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### StateReadState
|
|
|
|
StateReadState returns the indicated actor's state.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Balance": "0",
|
2021-02-09 23:46:33 +00:00
|
|
|
"Code": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"State": {}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateReplay
|
2020-10-16 02:45:11 +00:00
|
|
|
StateReplay replays a given message, assuming it was included in a block in the specified tipset.
|
2021-03-18 20:54:35 +00:00
|
|
|
|
2022-07-26 02:26:53 +00:00
|
|
|
If a tipset key is provided, and a replacing message is not found on chain,
|
2021-03-18 20:54:35 +00:00
|
|
|
the method will return an error saying that the message wasn't found
|
|
|
|
|
|
|
|
If no tipset key is provided, the appropriate tipset is looked up, and if
|
|
|
|
the message was gas-repriced, the on-chain message will be replayed - in
|
|
|
|
that case the returned InvocResult.MsgCid will not match the Cid param
|
|
|
|
|
|
|
|
If the caller wants to ensure that exactly the requested message was executed,
|
|
|
|
they MUST check that InvocResult.MsgCid is equal to the provided Cid.
|
|
|
|
Without this check both the requested and original message may appear as
|
|
|
|
successfully executed on-chain, which may look like a double-spend.
|
|
|
|
|
|
|
|
A replacing message is a message with a different CID, any of Gas values, and
|
|
|
|
different signature, but with all other parameters matching (source/destination,
|
|
|
|
nonce, params, etc.)
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-16 02:45:11 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"MsgCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"Msg": {
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"MsgRct": {
|
|
|
|
"ExitCode": 0,
|
|
|
|
"Return": "Ynl0ZSBhcnJheQ==",
|
2023-01-13 19:11:13 +00:00
|
|
|
"GasUsed": 9,
|
|
|
|
"EventsRoot": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
2020-10-16 01:00:47 +00:00
|
|
|
"GasCost": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"Message": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-10-16 01:00:47 +00:00
|
|
|
"GasUsed": "0",
|
|
|
|
"BaseFeeBurn": "0",
|
|
|
|
"OverEstimationBurn": "0",
|
|
|
|
"MinerPenalty": "0",
|
|
|
|
"MinerTip": "0",
|
|
|
|
"Refund": "0",
|
|
|
|
"TotalCost": "0"
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"ExecutionTrace": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"Msg": {
|
|
|
|
"From": "f01234",
|
2023-03-02 00:02:18 +00:00
|
|
|
"To": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"Value": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
2023-07-24 14:55:42 +00:00
|
|
|
"ParamsCodec": 42,
|
|
|
|
"GasLimit": 42,
|
2024-02-07 01:22:14 +00:00
|
|
|
"ReadOnly": true
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
|
|
|
"MsgRct": {
|
|
|
|
"ExitCode": 0,
|
|
|
|
"Return": "Ynl0ZSBhcnJheQ==",
|
2023-03-02 00:02:18 +00:00
|
|
|
"ReturnCodec": 42
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
2024-02-07 01:22:14 +00:00
|
|
|
"InvokedActor": {
|
|
|
|
"Id": 1000,
|
|
|
|
"State": {
|
|
|
|
"Code": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Head": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Nonce": 42,
|
|
|
|
"Balance": "0",
|
|
|
|
"Address": "f01234"
|
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasCharges": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"tg": 9,
|
|
|
|
"cg": 9,
|
|
|
|
"sg": 9,
|
2023-03-02 00:02:18 +00:00
|
|
|
"tt": 60000000000
|
2022-12-23 17:52:49 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"Subcalls": [
|
|
|
|
{
|
|
|
|
"Msg": {
|
|
|
|
"From": "f01234",
|
2023-03-02 00:02:18 +00:00
|
|
|
"To": "f01234",
|
2022-12-23 17:52:49 +00:00
|
|
|
"Value": "0",
|
|
|
|
"Method": 1,
|
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
2023-07-24 14:55:42 +00:00
|
|
|
"ParamsCodec": 42,
|
|
|
|
"GasLimit": 42,
|
2024-02-07 01:22:14 +00:00
|
|
|
"ReadOnly": true
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
|
|
|
"MsgRct": {
|
|
|
|
"ExitCode": 0,
|
|
|
|
"Return": "Ynl0ZSBhcnJheQ==",
|
2023-03-02 00:02:18 +00:00
|
|
|
"ReturnCodec": 42
|
2022-12-23 17:52:49 +00:00
|
|
|
},
|
2024-02-07 01:22:14 +00:00
|
|
|
"InvokedActor": {
|
|
|
|
"Id": 1000,
|
|
|
|
"State": {
|
|
|
|
"Code": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Head": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Nonce": 42,
|
|
|
|
"Balance": "0",
|
|
|
|
"Address": "f01234"
|
|
|
|
}
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasCharges": [
|
|
|
|
{
|
|
|
|
"Name": "string value",
|
|
|
|
"tg": 9,
|
|
|
|
"cg": 9,
|
|
|
|
"sg": 9,
|
2023-03-02 00:02:18 +00:00
|
|
|
"tt": 60000000000
|
2022-12-23 17:52:49 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"Subcalls": null
|
|
|
|
}
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
"Error": "string value",
|
|
|
|
"Duration": 60000000000
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateSearchMsg
|
2021-04-05 11:47:10 +00:00
|
|
|
StateSearchMsg looks back up to limit epochs in the chain for a message, and returns its receipt and the tipset where it was executed
|
2020-08-24 10:25:49 +00:00
|
|
|
|
2021-03-18 18:46:26 +00:00
|
|
|
NOTE: If a replacing message is found on chain, this method will return
|
|
|
|
a MsgLookup for the replacing message - the MsgLookup.Message will be a different
|
|
|
|
CID than the one provided in the 'cid' param, MsgLookup.Receipt will contain the
|
|
|
|
result of the execution of the replacing message.
|
|
|
|
|
|
|
|
If the caller wants to ensure that exactly the requested message was executed,
|
2021-04-05 11:47:10 +00:00
|
|
|
they must check that MsgLookup.Message is equal to the provided 'cid', or set the
|
|
|
|
`allowReplaced` parameter to false. Without this check, and with `allowReplaced`
|
|
|
|
set to true, both the requested and original message may appear as
|
2021-03-18 18:46:26 +00:00
|
|
|
successfully executed on-chain, which may look like a double-spend.
|
|
|
|
|
|
|
|
A replacing message is a message with a different CID, any of Gas values, and
|
|
|
|
different signature, but with all other parameters matching (source/destination,
|
|
|
|
nonce, params, etc.)
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2021-04-05 11:47:10 +00:00
|
|
|
[
|
2021-01-19 10:19:31 +00:00
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2021-04-05 11:47:10 +00:00
|
|
|
10101,
|
|
|
|
true
|
2021-01-19 10:19:31 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Receipt": {
|
|
|
|
"ExitCode": 0,
|
|
|
|
"Return": "Ynl0ZSBhcnJheQ==",
|
2023-01-13 19:11:13 +00:00
|
|
|
"GasUsed": 9,
|
|
|
|
"EventsRoot": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ReturnDec": {},
|
|
|
|
"TipSet": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"Height": 10101
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateSectorExpiration
|
|
|
|
StateSectorExpiration returns epoch at which given sector will expire
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
9,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"OnTime": 10101,
|
2020-08-24 10:25:49 +00:00
|
|
|
"Early": 10101
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateSectorGetInfo
|
2020-08-27 11:53:04 +00:00
|
|
|
StateSectorGetInfo returns the on-chain info for the specified miner's sector. Returns null in case the sector info isn't found
|
2020-08-24 10:25:49 +00:00
|
|
|
NOTE: returned info.Expiration may not be accurate in some cases, use StateSectorExpiration to get accurate
|
|
|
|
expiration epoch
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
9,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"SectorNumber": 9,
|
|
|
|
"SealProof": 8,
|
|
|
|
"SealedCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"DealIDs": [
|
|
|
|
5432
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"Activation": 10101,
|
|
|
|
"Expiration": 10101,
|
|
|
|
"DealWeight": "0",
|
|
|
|
"VerifiedDealWeight": "0",
|
|
|
|
"InitialPledge": "0",
|
|
|
|
"ExpectedDayReward": "0",
|
2021-11-18 23:35:06 +00:00
|
|
|
"ExpectedStoragePledge": "0",
|
2024-01-10 22:50:33 +00:00
|
|
|
"PowerBaseEpoch": 10101,
|
2022-04-20 21:34:28 +00:00
|
|
|
"ReplacedDayReward": "0",
|
2023-01-13 19:11:13 +00:00
|
|
|
"SectorKeyCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2024-01-10 22:50:33 +00:00
|
|
|
"Flags": 0
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateSectorPartition
|
|
|
|
StateSectorPartition finds deadline/partition with the specified sector
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
9,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Deadline": 42,
|
|
|
|
"Partition": 42
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### StateSectorPreCommitInfo
|
2022-06-16 12:19:53 +00:00
|
|
|
StateSectorPreCommitInfo returns the PreCommit info for the specified miner's sector.
|
|
|
|
Returns nil and no error if the sector isn't precommitted.
|
|
|
|
|
|
|
|
Note that the sector number may be allocated while PreCommitInfo is nil. This means that either allocated sector
|
|
|
|
numbers were compacted, and the sector number was marked as allocated in order to reduce size of the allocated
|
|
|
|
sectors bitfield, or that the sector was precommitted, but the precommit has expired.
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
9,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Info": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"SealProof": 8,
|
|
|
|
"SectorNumber": 9,
|
|
|
|
"SealedCID": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"SealRandEpoch": 10101,
|
|
|
|
"DealIDs": [
|
|
|
|
5432
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"Expiration": 10101,
|
2023-01-13 19:11:13 +00:00
|
|
|
"UnsealedCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
"PreCommitDeposit": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"PreCommitEpoch": 10101
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-10-12 20:41:27 +00:00
|
|
|
### StateVMCirculatingSupplyInternal
|
|
|
|
StateVMCirculatingSupplyInternal returns an approximation of the circulating supply of Filecoin at the given tipset.
|
2020-10-11 22:17:28 +00:00
|
|
|
This is the value reported by the runtime interface to actors code.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"FilVested": "0",
|
|
|
|
"FilMined": "0",
|
|
|
|
"FilBurnt": "0",
|
|
|
|
"FilLocked": "0",
|
|
|
|
"FilCirculating": "0",
|
|
|
|
"FilReserveDisbursed": "0"
|
2020-10-11 22:17:28 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### StateVerifiedClientStatus
|
|
|
|
StateVerifiedClientStatus returns the data cap for the given address.
|
|
|
|
Returns nil if there is no entry in the data cap table for the
|
|
|
|
address.
|
|
|
|
|
|
|
|
|
2020-10-01 07:14:59 +00:00
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-10-01 07:14:59 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
|
|
|
### StateVerifiedRegistryRootKey
|
2022-08-12 07:12:22 +00:00
|
|
|
StateVerifiedRegistryRootKey returns the address of the Verified Registry's root key
|
2020-10-01 07:14:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-10-06 07:30:40 +00:00
|
|
|
Response: `"f01234"`
|
2020-10-01 07:14:59 +00:00
|
|
|
|
|
|
|
### StateVerifierStatus
|
|
|
|
StateVerifierStatus returns the data cap for the given address.
|
|
|
|
Returns nil if there is no entry in the data cap table for the
|
|
|
|
address.
|
|
|
|
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
|
|
|
### StateWaitMsg
|
2021-04-05 11:47:10 +00:00
|
|
|
StateWaitMsg looks back up to limit epochs in the chain for a message.
|
2020-10-09 16:43:22 +00:00
|
|
|
If not found, it blocks until the message arrives on chain, and gets to the
|
|
|
|
indicated confidence depth.
|
|
|
|
|
2021-03-18 17:17:46 +00:00
|
|
|
NOTE: If a replacing message is found on chain, this method will return
|
|
|
|
a MsgLookup for the replacing message - the MsgLookup.Message will be a different
|
|
|
|
CID than the one provided in the 'cid' param, MsgLookup.Receipt will contain the
|
|
|
|
result of the execution of the replacing message.
|
|
|
|
|
|
|
|
If the caller wants to ensure that exactly the requested message was executed,
|
2021-04-05 11:47:10 +00:00
|
|
|
they must check that MsgLookup.Message is equal to the provided 'cid', or set the
|
|
|
|
`allowReplaced` parameter to false. Without this check, and with `allowReplaced`
|
|
|
|
set to true, both the requested and original message may appear as
|
2021-03-18 17:17:46 +00:00
|
|
|
successfully executed on-chain, which may look like a double-spend.
|
|
|
|
|
|
|
|
A replacing message is a message with a different CID, any of Gas values, and
|
|
|
|
different signature, but with all other parameters matching (source/destination,
|
|
|
|
nonce, params, etc.)
|
|
|
|
|
2020-10-09 16:43:22 +00:00
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
42,
|
2021-04-05 11:47:10 +00:00
|
|
|
10101,
|
|
|
|
true
|
2020-10-09 16:43:22 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"Receipt": {
|
|
|
|
"ExitCode": 0,
|
|
|
|
"Return": "Ynl0ZSBhcnJheQ==",
|
2023-01-13 19:11:13 +00:00
|
|
|
"GasUsed": 9,
|
|
|
|
"EventsRoot": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"ReturnDec": {},
|
|
|
|
"TipSet": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"Height": 10101
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
## Subscribe
|
|
|
|
|
|
|
|
|
2024-03-19 00:37:46 +00:00
|
|
|
### SubscribeActorEventsRaw
|
|
|
|
SubscribeActorEventsRaw returns a long-lived stream of all user-programmed and built-in actor
|
chore: Merge nv22 into master (#11699)
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* feat: drand: refactor round verification
* feat: sealing: Support nv22 DDO features in the sealing pipeline (#11226)
* Initial work supporting DDO pieces in lotus-miner
* sealing: Update pipeline input to operate on UniversalPiece
* sealing: Update pipeline checks/sealing states to operate on UniversalPiece
* sealing: Make pipeline build with UniversalPiece
* move PieceDealInfo out of api
* make gen
* make sealing pipeline unit tests pass
* fix itest ensemble build
* don't panic in SectorsStatus with deals
* stop linter from complaining about checkPieces
* fix sector import tests
* mod tidy
* sealing: Add logic for (pre)committing DDO sectors
* sealing: state-types with method defs
* DDO non-snap pipeline works(?), DDO Itests
* DDO support in snapdeals pipeline
* make gen
* update actor bundles
* update the gst market fix
* fix: chain: use PreCommitSectorsBatch2 when setting up genesis
* some bug fixes
* integration working changes
* update actor bundles
* Make TestOnboardRawPieceSnap pass
* Appease the linter
* Make deadlines test pass with v12 actors
* Update go-state-types, abstract market DealState
* make gen
* mod tidy, lint fixes
* Fix some more tests
* Bump version in master
Bump version in master
* Make gen
Make gen
* fix sender
* fix: lotus-provider: Fix winning PoSt
* fix: sql Scan cannot write to an object
* Actually show miner-addrs in info-log
Actually show miner-addrs in lotus-provider info-log
* [WIP] feat: Add nv22 skeleton
Addition of Network Version 22 skeleton
* update FFI
* ddo is now nv22
* make gen
* temp actor bundle with ddo
* use working go-state-types
* gst with v13 market migration
* update bundle, builtin.MethodsMiner.ProveCommitSectors2 -> 3
* actually working v13 migration, v13 migration itest
* Address review
* sealing: Correct DDO snap pledge math
* itests: Mixed ddo itest
* pipeline: Fix sectorWeight
* sealing: convert market deals into PAMs in mixed sectors
* sealing: make market to ddo conversion work
* fix lint
* update gst
* Update actors and GST to lastest integ branch
* commit batcher: Update ProveCommitSectors3Params builder logic
* make gen
* use builtin-actors master
* ddo: address review
* itests: Add commd assertions to ddo tests
* make gen
* gst with fixed types
* config knobs for RequireActivationSuccess
* storage: Drop obsolete flaky tasts
---------
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Phi <orjan.roren@gmail.com>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
* feat: implement FIP-0063
* chore: deps: update to go-multiaddr v0.12.2 (#11602)
* feat: fvm: update the FVM/FFI to v4.1 (#11608) (#11612)
This:
1. Adds nv22 support.
2. Updates the message tracing format.
Co-authored-by: Steven Allen <steven@stebalien.com>
* AggregateProofType nil when doing batch updates
Use latest nv22 go-state-types version with matching update
* Update to v13.0.0-rc.2 bundle
* chore: Upgrade heights and codename
Update upgrade heights
Co-Authored-By: Steven Allen <steven@stebalien.com>
* Update epoch after nv22 DRAND switch
Update epoch after nv22 DRAND switch
* Update Mango codename to Phoneix
Make the codename for the Drand-change inline with Dragon style.
* Add UpgradePhoenixHeight to API params
* set UpgradePhoenixHeight to be one hour after Dragon
* Make gen
Make gen and UpgradePhoenixHeight in butterfly and local devnet to be in line with Calibration and Mainnet
* Update epoch heights (#11637)
Update epoch heights
* new: add forest bootstrap nodes (#11636)
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
* Merge pull request #11491 from filecoin-project/fix/remove-decommissioned-pl-bootstrap-nodes
Remove PL operated bootstrap nodes from mainnet.pi
* feat: api: new verified registry methods to get all allocations and claims (#11631)
* new verireg methods
* update changelog and add itest
* update itest and cli
* update new method's support till v9
* remove gateway APIs
* fix cli internal var names
* chore:: backport #11609 to the feat/nv22 branch (#11644)
* feat: api: improve the correctness of Eth's trace_block (#11609)
* Improve the correctness of Eth's trace_block
- Improve encoding/decoding of parameters and return values:
- Encode "native" parameters and return values with Solidity ABI.
- Correctly decode parameters to "create" calls.
- Use the correct (ish) output for "create" calls.
- Handle all forms of "create".
- Make robust with respect to reverts:
- Use the actor ID/address from the trace instead of looking it up in
the state-tree (may not exist in the state-tree due to a revert).
- Gracefully handle failed actor/contract creation.
- Improve performance:
- We avoid looking anything up in the state-tree when translating the
trace, which should significantly improve performance.
- Improve code readability:
- Remove all "backtracking" logic.
- Use an "environment" struct to store temporary state instead of
attaching it to the trace.
- Fix random bugs:
- Fix an allocation bug in the "address" logic (need to set the
capacity before modifying the slice).
- Improved error checking/handling.
- Use correct types for `trace_block` action/results (create, call, etc.).
- And use the correct types for Result/Action structs instead of reusing the same "Call" action every time.
- Improve error messages.
* Make gen
Make gen
---------
Co-authored-by: Steven Allen <steven@stebalien.com>
* fix: add UpgradePhoenixHeight to StateGetNetworkParams (#11648)
* chore: deps: update to go-state-types v13.0.0-rc.1
* do NOT update the cache when running the real migration
* Merge pull request #11632 from hanabi1224/hm/drand-test
feat: drand quicknet: allow scheduling drand quicknet upgrade before nv22 on 2k devnet
* chore: deps: update to go-state-types v13.0.0-rc.2
chore: deps: update to go-state-types v13.0.0-rc.2
* feat: set migration config UpgradeEpoch for v13 actors upgrade
* Built-in actor events first draft
* itest for DDO non-market verified data w/ builtin actor events
* Tests for builtin actor events API
* Clean up DDO+Events tests, add lots of explainer comments
* Minor tweaks to events types
* Avoid duplicate messages when looking for receipts
* Rename internal events modules for clarity
* Adjust actor event API after review
* s/ActorEvents/Events/g in global config
* Manage event sending rate for SubscribeActorEvents
* Terminate SubscribeActorEvents chan when at max height
* Document future API changes
* More clarity in actor event API docs
* More post-review changes, lots of tests for SubscribeActorEvents
Use BlockDelay as the window for receiving events on the SubscribeActorEvents
channel. We expect the user to have received the initial batch of historical
events (if any) in one block's time. For real-time events we expect them to
not fall behind by roughly one block's time.
* Remove duplicate code from actor event type marshalling tests
Reduce verbosity and remove duplicate test logic from actor event types
JSON marshalling tests.
* Rename actor events test to follow go convention
Add missing `s` to `actor_events` test file to follow golang convention
used across the repo.
* Run actor events table tests in deterministic order
Refactor `map` usage for actor event table tests to ensure deterministic
test execution order, making debugging potential issues easier. If
non-determinism is a target, leverage Go's built-in parallel testing
capabilities.
* Reduce scope for filter removal failure when getting actor events
Use a fresh context to remove the temporary filter installed solely to
get the actor events. This should reduce chances of failure in a case
where the original context may be expired/cancelled.
Refactor removal into a `defer` statement for a more readable, concise
return statement.
* Use fixed RNG seed for actor event tests
Improve determinism in actor event tests by using a fixed RNG seed. This
makes up a more reproducible test suit.
* Use provided libraries to assert eventual conditions
Use the functionalities already provided by `testify` to assert eventual
conditions, and remove the use of `time.Sleep`.
Remove duplicate code in utility functions that are already defined.
Refactor assertion helper functions to use consistent terminology:
"require" implies fatal error, whereas "assert" implies error where the
test may proceed executing.
* Update changelog for actor events APIs
* Fix concerns and docs identified by review
* Update actor bundle to v13.0.0-rc3
Update actor bundle to v13.0.0-rc3
* Prep Lotus v1.26.0-rc1
- For sanity reverting the mainnet upgrade epoch to 99999999, and then only set it when cutting the final release
-Update Calibnet CIDs to v13.0.0-rc3
- Add GetActorEvents, SubscribeActorEvents, GetAllClaims and GetAllAllocations methods to the changelog
Co-Authored-By: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: Masih H. Derkani <m@derkani.org>
* Make gen
Make gen
* fix: beacon: validate drand change at nv16 correctly
* bump to v1.26.0-rc2
* test: cleanup ddo verified itest, extract steps to functions
also add allocation-removed event case
* test: extract verified DDO test to separate file, add more checks
* test: add additional actor events checks
* Add verification for "deal-activated" actor event
* docs(drand): document the meaning of "IsChained" (#11692)
* Resolve conflicts
I encountered multiple issues when trying to run make gen. And these changes fixed a couple of them:
- go mod tidy
- Remove RaftState/RaftLeader
- Revert `if ts.Height() > claim.TermMax+claim.TermStart || !cctx.IsSet("expired")` to the what is in the release/v1.26.0: `if tsHeight > val.TermMax || !expired`
* fixup imports, make jen
* Update version
Update version in master to v1.27.0-dev
* Update node/impl/full/dummy.go
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
* Adjust ListClaimsCmd
Adjust ListClaimsCmd according to review
---------
Signed-off-by: samuelarogbonlo <sbayo971@gmail.com>
Co-authored-by: TippyFlits <james.bluett@protocol.ai>
Co-authored-by: Aayush <arajasek94@gmail.com>
Co-authored-by: Łukasz Magiera <magik6k@users.noreply.github.com>
Co-authored-by: Jennifer Wang <jiayingw703@gmail.com>
Co-authored-by: Shrenuj Bansal <shrenuj.bansal@protocol.ai>
Co-authored-by: Andrew Jackson (Ajax) <snadrus@gmail.com>
Co-authored-by: Steven Allen <steven@stebalien.com>
Co-authored-by: Rod Vagg <rod@vagg.org>
Co-authored-by: Samuel Arogbonlo <47984109+samuelarogbonlo@users.noreply.github.com>
Co-authored-by: LexLuthr <88259624+LexLuthr@users.noreply.github.com>
Co-authored-by: tom123222 <160735201+tom123222@users.noreply.github.com>
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
Co-authored-by: Masih H. Derkani <m@derkani.org>
Co-authored-by: Jiaying Wang <42981373+jennijuju@users.noreply.github.com>
2024-03-12 09:33:58 +00:00
|
|
|
events that match the given filter.
|
|
|
|
Events that match the given filter are written to the stream in real-time as they are emitted
|
|
|
|
from the FVM.
|
|
|
|
The response stream is closed when the client disconnects, when a ToHeight is specified and is
|
|
|
|
reached, or if there is an error while writing an event to the stream.
|
|
|
|
This API also allows clients to read all historical events matching the given filter before any
|
|
|
|
real-time events are written to the response stream if the filter specifies an earlier
|
|
|
|
FromHeight.
|
|
|
|
Results available from this API may be limited by the MaxFilterResults and MaxFilterHeightRange
|
|
|
|
configuration options and also the amount of historical data available in the node.
|
|
|
|
|
|
|
|
Note: this API is only available via websocket connections.
|
|
|
|
This is an EXPERIMENTAL API and may be subject to change.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"addresses": [
|
|
|
|
"f01234"
|
|
|
|
],
|
|
|
|
"fields": {
|
|
|
|
"abc": [
|
|
|
|
{
|
|
|
|
"codec": 81,
|
|
|
|
"value": "ZGRhdGE="
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"fromHeight": 1010,
|
|
|
|
"toHeight": 1020
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"entries": [
|
|
|
|
{
|
|
|
|
"Flags": 7,
|
|
|
|
"Key": "string value",
|
|
|
|
"Codec": 42,
|
|
|
|
"Value": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"emitter": "f01234",
|
|
|
|
"reverted": true,
|
|
|
|
"height": 10101,
|
|
|
|
"tipsetKey": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"msgCid": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
## Sync
|
|
|
|
The Sync method group contains methods for interacting with and
|
|
|
|
observing the lotus sync service.
|
|
|
|
|
|
|
|
|
|
|
|
### SyncCheckBad
|
|
|
|
SyncCheckBad checks if a block was marked as bad, and if it was, returns
|
|
|
|
the reason.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"string value"`
|
|
|
|
|
2020-09-09 07:45:47 +00:00
|
|
|
### SyncCheckpoint
|
|
|
|
SyncCheckpoint marks a blocks as checkpointed, meaning that it won't ever fork away from it.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### SyncIncomingBlocks
|
|
|
|
SyncIncomingBlocks returns a channel streaming incoming, potentially not
|
|
|
|
yet synced block headers.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2020-10-06 07:30:40 +00:00
|
|
|
"Miner": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Ticket": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"VRFProof": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"ElectionProof": {
|
|
|
|
"WinCount": 9,
|
|
|
|
"VRFProof": "Ynl0ZSBhcnJheQ=="
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"BeaconEntries": [
|
|
|
|
{
|
|
|
|
"Round": 42,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"WinPoStProof": [
|
|
|
|
{
|
|
|
|
"PoStProof": 8,
|
|
|
|
"ProofBytes": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
],
|
2021-12-28 02:38:12 +00:00
|
|
|
"Parents": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"ParentWeight": "0",
|
|
|
|
"Height": 10101,
|
2022-12-23 17:52:49 +00:00
|
|
|
"ParentStateRoot": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"ParentMessageReceipts": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"Messages": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"BLSAggregate": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"Timestamp": 42,
|
2022-12-23 17:52:49 +00:00
|
|
|
"BlockSig": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"ForkSignaling": 42,
|
2020-08-24 10:25:49 +00:00
|
|
|
"ParentBaseFee": "0"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### SyncMarkBad
|
|
|
|
SyncMarkBad marks a blocks as bad, meaning that it won't ever by synced.
|
|
|
|
Use with extreme caution.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### SyncState
|
|
|
|
SyncState returns the current status of the lotus sync system.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2022-12-23 17:52:49 +00:00
|
|
|
"ActiveSyncs": [
|
|
|
|
{
|
|
|
|
"WorkerID": 42,
|
|
|
|
"Base": {
|
|
|
|
"Cids": null,
|
|
|
|
"Blocks": null,
|
|
|
|
"Height": 0
|
|
|
|
},
|
|
|
|
"Target": {
|
|
|
|
"Cids": null,
|
|
|
|
"Blocks": null,
|
|
|
|
"Height": 0
|
|
|
|
},
|
|
|
|
"Stage": 1,
|
|
|
|
"Height": 10101,
|
|
|
|
"Start": "0001-01-01T00:00:00Z",
|
|
|
|
"End": "0001-01-01T00:00:00Z",
|
|
|
|
"Message": "string value"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"VMApplied": 42
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### SyncSubmitBlock
|
|
|
|
SyncSubmitBlock can be used to submit a newly created block to the.
|
|
|
|
network through this node
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Header": {
|
2020-10-06 07:30:40 +00:00
|
|
|
"Miner": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Ticket": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"VRFProof": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"ElectionProof": {
|
|
|
|
"WinCount": 9,
|
|
|
|
"VRFProof": "Ynl0ZSBhcnJheQ=="
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"BeaconEntries": [
|
|
|
|
{
|
|
|
|
"Round": 42,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"WinPoStProof": [
|
|
|
|
{
|
|
|
|
"PoStProof": 8,
|
|
|
|
"ProofBytes": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
],
|
2021-12-28 02:38:12 +00:00
|
|
|
"Parents": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
],
|
2020-08-24 10:25:49 +00:00
|
|
|
"ParentWeight": "0",
|
|
|
|
"Height": 10101,
|
2022-12-23 17:52:49 +00:00
|
|
|
"ParentStateRoot": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
"ParentMessageReceipts": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"Messages": {
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"BLSAggregate": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
2020-08-24 10:25:49 +00:00
|
|
|
"Timestamp": 42,
|
2022-12-23 17:52:49 +00:00
|
|
|
"BlockSig": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
},
|
|
|
|
"ForkSignaling": 42,
|
2020-08-24 10:25:49 +00:00
|
|
|
"ParentBaseFee": "0"
|
|
|
|
},
|
2022-12-23 17:52:49 +00:00
|
|
|
"BlsMessages": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"SecpkMessages": [
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-10-10 18:46:06 +00:00
|
|
|
### SyncUnmarkAllBad
|
|
|
|
SyncUnmarkAllBad purges bad block cache, making it possible to sync to chains previously marked as bad
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-09-09 07:45:47 +00:00
|
|
|
### SyncUnmarkBad
|
|
|
|
SyncUnmarkBad unmarks a blocks as bad, making it possible to be validated and synced again.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
2020-09-27 22:08:58 +00:00
|
|
|
### SyncValidateTipset
|
|
|
|
SyncValidateTipset indicates whether the provided tipset is valid or not
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `true`
|
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
## Wallet
|
|
|
|
|
|
|
|
|
|
|
|
### WalletBalance
|
|
|
|
WalletBalance returns the balance of the given address at the current head of the chain.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `"0"`
|
|
|
|
|
|
|
|
### WalletDefaultAddress
|
|
|
|
WalletDefaultAddress returns the address marked as default in the wallet.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2020-10-06 07:30:40 +00:00
|
|
|
Response: `"f01234"`
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### WalletDelete
|
|
|
|
WalletDelete deletes an address from the wallet.
|
|
|
|
|
|
|
|
|
2021-03-23 12:42:56 +00:00
|
|
|
Perms: admin
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### WalletExport
|
|
|
|
WalletExport returns the private key of an address in the wallet.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
2020-10-11 18:12:01 +00:00
|
|
|
"Type": "bls",
|
2022-12-23 17:52:49 +00:00
|
|
|
"PrivateKey": "Ynl0ZSBhcnJheQ=="
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### WalletHas
|
|
|
|
WalletHas indicates whether the given address is in the wallet.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `true`
|
|
|
|
|
|
|
|
### WalletImport
|
|
|
|
WalletImport receives a KeyInfo, which includes a private key, and imports it into the wallet.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: admin
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
2020-10-11 18:12:01 +00:00
|
|
|
"Type": "bls",
|
2022-12-23 17:52:49 +00:00
|
|
|
"PrivateKey": "Ynl0ZSBhcnJheQ=="
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-10-06 07:30:40 +00:00
|
|
|
Response: `"f01234"`
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### WalletList
|
|
|
|
WalletList lists all the addresses in the wallet.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
2021-12-28 02:38:12 +00:00
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"f01234"
|
|
|
|
]
|
|
|
|
```
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### WalletNew
|
|
|
|
WalletNew creates a new address in the wallet with the given sigType.
|
2020-10-11 18:12:01 +00:00
|
|
|
Available key types: bls, secp256k1, secp256k1-ledger
|
|
|
|
Support for numerical types: 1 - secp256k1, 2 - BLS is deprecated
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Perms: write
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-11 18:12:01 +00:00
|
|
|
"bls"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-10-06 07:30:40 +00:00
|
|
|
Response: `"f01234"`
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
### WalletSetDefault
|
|
|
|
WalletSetDefault marks the given address as as the default one.
|
|
|
|
|
|
|
|
|
2021-03-23 12:42:56 +00:00
|
|
|
Perms: write
|
2020-08-24 10:25:49 +00:00
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234"
|
2020-08-24 10:25:49 +00:00
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `{}`
|
|
|
|
|
|
|
|
### WalletSign
|
|
|
|
WalletSign signs the given bytes using the given address.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Ynl0ZSBhcnJheQ=="
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### WalletSignMessage
|
|
|
|
WalletSignMessage signs the given message using the given address.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: sign
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
{
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response:
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Message": {
|
|
|
|
"Version": 42,
|
2020-10-06 07:30:40 +00:00
|
|
|
"To": "f01234",
|
|
|
|
"From": "f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Nonce": 42,
|
|
|
|
"Value": "0",
|
2022-12-23 17:52:49 +00:00
|
|
|
"GasLimit": 9,
|
2020-08-24 10:25:49 +00:00
|
|
|
"GasFeeCap": "0",
|
|
|
|
"GasPremium": "0",
|
|
|
|
"Method": 1,
|
2020-10-12 18:47:09 +00:00
|
|
|
"Params": "Ynl0ZSBhcnJheQ==",
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-10-12 18:47:09 +00:00
|
|
|
}
|
2020-08-24 10:25:49 +00:00
|
|
|
},
|
|
|
|
"Signature": {
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
2020-10-12 18:47:09 +00:00
|
|
|
},
|
|
|
|
"CID": {
|
2022-12-23 17:52:49 +00:00
|
|
|
"/": "bafy2bzacebbpdegvr3i4cosewthysg5xkxpqfn2wfcz6mv2hmoktwbdxkax4s"
|
2020-08-24 10:25:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-09-30 05:45:03 +00:00
|
|
|
### WalletValidateAddress
|
|
|
|
WalletValidateAddress validates whether a given string can be decoded as a well-formed address
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
"string value"
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2020-10-06 07:30:40 +00:00
|
|
|
Response: `"f01234"`
|
2020-09-30 05:45:03 +00:00
|
|
|
|
2020-08-24 10:25:49 +00:00
|
|
|
### WalletVerify
|
|
|
|
WalletVerify takes an address, a signature, and some bytes, and indicates whether the signature is valid.
|
|
|
|
The address does not have to be in the wallet.
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
```json
|
|
|
|
[
|
2020-10-06 07:30:40 +00:00
|
|
|
"f01234",
|
2020-08-24 10:25:49 +00:00
|
|
|
"Ynl0ZSBhcnJheQ==",
|
|
|
|
{
|
|
|
|
"Type": 2,
|
|
|
|
"Data": "Ynl0ZSBhcnJheQ=="
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
Response: `true`
|
|
|
|
|
2023-01-25 03:56:04 +00:00
|
|
|
## Web3
|
|
|
|
|
|
|
|
|
|
|
|
### Web3ClientVersion
|
|
|
|
Returns the client version
|
|
|
|
|
|
|
|
|
|
|
|
Perms: read
|
|
|
|
|
|
|
|
Inputs: `null`
|
|
|
|
|
|
|
|
Response: `"string value"`
|
|
|
|
|