@xyo-network/chain-services 1.5.29 → 1.5.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/neutral/index.mjs +254 -393
- package/dist/neutral/index.mjs.map +1 -1
- package/dist/types/AccountBalance/XyoChainAccountBalanceService.d.ts +8 -1
- package/dist/types/AccountBalance/XyoChainAccountBalanceService.d.ts.map +1 -1
- package/dist/types/AccountBalance/accountBalanceServiceFromArchivist.d.ts.map +1 -1
- package/dist/types/BaseService.d.ts +2 -1
- package/dist/types/BaseService.d.ts.map +1 -1
- package/dist/types/BlockProducer/XyoBlockProducer.d.ts +4 -4
- package/dist/types/BlockProducer/XyoBlockProducer.d.ts.map +1 -1
- package/dist/types/{XyoChainBlockNumberIterator.d.ts → ChainBlockNumberIteration/ChainBlockNumberIterationService.d.ts} +4 -10
- package/dist/types/ChainBlockNumberIteration/ChainBlockNumberIterationService.d.ts.map +1 -0
- package/dist/types/ChainBlockNumberIteration/index.d.ts +3 -0
- package/dist/types/ChainBlockNumberIteration/index.d.ts.map +1 -0
- package/dist/types/ChainBlockNumberIteration/model/BlockNumberIteration.d.ts +7 -0
- package/dist/types/ChainBlockNumberIteration/model/BlockNumberIteration.d.ts.map +1 -0
- package/dist/types/ChainBlockNumberIteration/model/index.d.ts +2 -0
- package/dist/types/ChainBlockNumberIteration/model/index.d.ts.map +1 -0
- package/dist/types/ChainIndexService.d.ts +2 -2
- package/dist/types/ChainIndexService.d.ts.map +1 -1
- package/dist/types/ChainValidator/XyoValidator.d.ts.map +1 -1
- package/dist/types/PendingTransactions/PendingTransactions.d.ts +16 -6
- package/dist/types/PendingTransactions/PendingTransactions.d.ts.map +1 -1
- package/dist/types/PendingTransactions/bundledPayloadToHydratedTransaction.d.ts +4 -0
- package/dist/types/PendingTransactions/bundledPayloadToHydratedTransaction.d.ts.map +1 -0
- package/dist/types/PendingTransactions/hydratedTransactionToPayloadBundle.d.ts +4 -0
- package/dist/types/PendingTransactions/hydratedTransactionToPayloadBundle.d.ts.map +1 -0
- package/dist/types/StakeIntent/XyoStakeIntentService.d.ts.map +1 -1
- package/dist/types/Staker/Evm/Evm.d.ts +5 -8
- package/dist/types/Staker/Evm/Evm.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -2
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +39 -39
- package/src/AccountBalance/XyoChainAccountBalanceService.ts +36 -7
- package/src/AccountBalance/accountBalanceServiceFromArchivist.ts +1 -0
- package/src/BaseService.ts +2 -1
- package/src/BlockProducer/XyoBlockProducer.ts +6 -6
- package/src/{XyoChainBlockNumberIterator.ts → ChainBlockNumberIteration/ChainBlockNumberIterationService.ts} +16 -31
- package/src/ChainBlockNumberIteration/index.ts +2 -0
- package/src/ChainBlockNumberIteration/model/BlockNumberIteration.ts +7 -0
- package/src/ChainBlockNumberIteration/model/index.ts +1 -0
- package/src/ChainIndexService.ts +2 -2
- package/src/ChainValidator/XyoValidator.ts +1 -7
- package/src/PendingTransactions/PendingTransactions.ts +73 -57
- package/src/PendingTransactions/bundledPayloadToHydratedTransaction.ts +14 -0
- package/src/PendingTransactions/hydratedTransactionToPayloadBundle.ts +18 -0
- package/src/StakeIntent/XyoStakeIntentService.ts +7 -6
- package/src/StakeIntent/lib/getBlockSignedStakeDeclarations.ts +2 -2
- package/src/Staker/Evm/Evm.ts +34 -39
- package/src/index.ts +1 -2
- package/dist/types/BaseEthProvider.d.ts +0 -56
- package/dist/types/BaseEthProvider.d.ts.map +0 -1
- package/dist/types/XyoChainBlockNumberIterator.d.ts.map +0 -1
- package/src/BaseEthProvider.ts +0 -219
package/src/index.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
export * from './AccountBalance/index.ts'
|
|
2
|
-
export * from './BaseEthProvider.ts'
|
|
3
2
|
export * from './BaseService.ts'
|
|
4
3
|
export * from './BlockProducer/index.ts'
|
|
5
4
|
export * from './BlockReward/index.ts'
|
|
5
|
+
export * from './ChainBlockNumberIteration/index.ts'
|
|
6
6
|
export * from './ChainValidator/index.ts'
|
|
7
7
|
export * from './Election/index.ts'
|
|
8
8
|
export * from './PendingTransactions/index.ts'
|
|
9
9
|
export * from './StakeIntent/index.ts'
|
|
10
10
|
export * from './Staker/index.ts'
|
|
11
|
-
export * from './XyoChainBlockNumberIterator.ts'
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import type { Address, BlockAPI, BlockNumberOrTag, CompileResultAPI, EthExecutionAPI, FeeHistoryResultAPI, Filter, FilterResultsAPI, HexString, HexString8Bytes, HexString32Bytes, HexString256Bytes, HexStringBytes, SignedTransactionInfoAPI, SyncingStatusAPI, TransactionCallAPI, TransactionInfoAPI, TransactionReceiptAPI, TransactionWithSenderAPI, Uint, Uint256 } from 'web3-types';
|
|
2
|
-
export declare class BaseEthProvider implements EthExecutionAPI {
|
|
3
|
-
eth_accounts(): Address[];
|
|
4
|
-
eth_blockNumber(): Uint;
|
|
5
|
-
eth_call(_transaction: TransactionCallAPI, _blockNumber: BlockNumberOrTag): HexStringBytes;
|
|
6
|
-
eth_clearSubscriptions(_keepSyncing?: boolean): void;
|
|
7
|
-
eth_coinbase(): Address;
|
|
8
|
-
eth_compileLLL(_code: string): HexStringBytes;
|
|
9
|
-
eth_compileSerpent(_code: string): HexStringBytes;
|
|
10
|
-
eth_compileSolidity(_code: string): CompileResultAPI;
|
|
11
|
-
eth_estimateGas(_transaction: Partial<TransactionWithSenderAPI>, _blockNumber: BlockNumberOrTag): Uint;
|
|
12
|
-
eth_feeHistory(_blockCount: Uint, _newestBlock: BlockNumberOrTag, _rewardPercentiles: number[]): FeeHistoryResultAPI;
|
|
13
|
-
eth_gasPrice(): Uint;
|
|
14
|
-
eth_getBalance(_address: Address, _blockNumber: BlockNumberOrTag): Uint;
|
|
15
|
-
eth_getBlockByHash(_blockHash: HexString32Bytes, _hydrated: boolean): BlockAPI;
|
|
16
|
-
eth_getBlockByNumber(_blockNumber: BlockNumberOrTag, _hydrated: boolean): BlockAPI;
|
|
17
|
-
eth_getBlockTransactionCountByHash(_blockHash: HexString32Bytes): Uint;
|
|
18
|
-
eth_getBlockTransactionCountByNumber(_blockNumber: BlockNumberOrTag): Uint;
|
|
19
|
-
eth_getCode(_address: Address, _blockNumber: BlockNumberOrTag): HexStringBytes;
|
|
20
|
-
eth_getCompilers(): string[];
|
|
21
|
-
eth_getFilterChanges(_filterIdentifier: Uint): FilterResultsAPI;
|
|
22
|
-
eth_getFilterLogs(_filterIdentifier: Uint): FilterResultsAPI;
|
|
23
|
-
eth_getLogs(_filter: Filter): FilterResultsAPI;
|
|
24
|
-
eth_getStorageAt(_address: Address, _storageSlot: Uint256, _blockNumber: BlockNumberOrTag): HexStringBytes;
|
|
25
|
-
eth_getTransactionByBlockHashAndIndex(_blockHash: HexString32Bytes, _transactionIndex: Uint): TransactionInfoAPI | undefined;
|
|
26
|
-
eth_getTransactionByBlockNumberAndIndex(_blockNumber: BlockNumberOrTag, _transactionIndex: Uint): TransactionInfoAPI | undefined;
|
|
27
|
-
eth_getTransactionByHash(_transactionHash: HexString32Bytes): TransactionInfoAPI | undefined;
|
|
28
|
-
eth_getTransactionCount(_address: Address, _blockNumber: BlockNumberOrTag): Uint;
|
|
29
|
-
eth_getTransactionReceipt(_transactionHash: HexString32Bytes): TransactionReceiptAPI | undefined;
|
|
30
|
-
eth_getUncleByBlockHashAndIndex(_blockHash: HexString32Bytes, _uncleIndex: Uint): BlockAPI;
|
|
31
|
-
eth_getUncleByBlockNumberAndIndex(_blockNumber: BlockNumberOrTag, _uncleIndex: Uint): BlockAPI;
|
|
32
|
-
eth_getUncleCountByBlockHash(_blockHash: HexString32Bytes): Uint;
|
|
33
|
-
eth_getUncleCountByBlockNumber(_blockNumber: BlockNumberOrTag): Uint;
|
|
34
|
-
eth_getWork(): [HexString32Bytes, HexString32Bytes, HexString32Bytes];
|
|
35
|
-
eth_hashrate(): Uint;
|
|
36
|
-
eth_maxPriorityFeePerGas(): Uint;
|
|
37
|
-
eth_mining(): boolean;
|
|
38
|
-
eth_newBlockFilter(): Uint;
|
|
39
|
-
eth_newFilter(_filter: Filter): Uint;
|
|
40
|
-
eth_newPendingTransactionFilter(): Uint;
|
|
41
|
-
eth_protocolVersion(): string;
|
|
42
|
-
eth_sendRawTransaction(_transaction: HexStringBytes): HexString32Bytes;
|
|
43
|
-
eth_sendTransaction(_transaction: TransactionWithSenderAPI | Partial<TransactionWithSenderAPI>): HexString32Bytes;
|
|
44
|
-
eth_sign(_address: Address, _message: HexStringBytes): HexString256Bytes;
|
|
45
|
-
eth_signTransaction(_transaction: TransactionWithSenderAPI | Partial<TransactionWithSenderAPI>): HexStringBytes | SignedTransactionInfoAPI;
|
|
46
|
-
eth_submitHashrate(_hashRate: HexString32Bytes, _id: HexString32Bytes): boolean;
|
|
47
|
-
eth_submitWork(_nonce: HexString8Bytes, _hash: HexString32Bytes, _digest: HexString32Bytes): boolean;
|
|
48
|
-
eth_subscribe(..._params: ['newHeads'] | ['newPendingTransactions'] | ['syncing'] | ['logs', {
|
|
49
|
-
address?: HexString;
|
|
50
|
-
topics?: HexString[];
|
|
51
|
-
}]): HexString;
|
|
52
|
-
eth_syncing(): SyncingStatusAPI;
|
|
53
|
-
eth_uninstallFilter(_filterIdentifier: Uint): boolean;
|
|
54
|
-
eth_unsubscribe(_subscriptionId: HexString): HexString;
|
|
55
|
-
}
|
|
56
|
-
//# sourceMappingURL=BaseEthProvider.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BaseEthProvider.d.ts","sourceRoot":"","sources":["../../src/BaseEthProvider.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,OAAO,EAAE,QAAQ,EACjB,gBAAgB,EAChB,gBAAgB,EAChB,eAAe,EACf,mBAAmB,EACnB,MAAM,EACN,gBAAgB,EAChB,SAAS,EAAE,eAAe,EAC1B,gBAAgB,EAChB,iBAAiB,EACjB,cAAc,EACd,wBAAwB,EACxB,gBAAgB,EAChB,kBAAkB,EAClB,kBAAkB,EAClB,qBAAqB,EACrB,wBAAwB,EACxB,IAAI,EACJ,OAAO,EACR,MAAM,YAAY,CAAA;AAEnB,qBAAa,eAAgB,YAAW,eAAe;IACrD,YAAY,IAAI,OAAO,EAAE;IAIzB,eAAe,IAAI,IAAI;IAIvB,QAAQ,CAAC,YAAY,EAAE,kBAAkB,EAAE,YAAY,EAAE,gBAAgB,GAAG,cAAc;IAI1F,sBAAsB,CAAC,YAAY,CAAC,EAAE,OAAO,GAAG,IAAI;IAIpD,YAAY,IAAI,OAAO;IAIvB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,cAAc;IAI7C,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAG,cAAc;IAIjD,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,gBAAgB;IAIpD,eAAe,CAAC,YAAY,EAAE,OAAO,CAAC,wBAAwB,CAAC,EAAE,YAAY,EAAE,gBAAgB,GAAG,IAAI;IAItG,cAAc,CAAC,WAAW,EAAE,IAAI,EAAE,YAAY,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,EAAE,GAAG,mBAAmB;IAIpH,YAAY,IAAI,IAAI;IAIpB,cAAc,CAAC,QAAQ,EAAE,OAAO,EAAE,YAAY,EAAE,gBAAgB,GAAG,IAAI;IAIvE,kBAAkB,CAAC,UAAU,EAAE,gBAAgB,EAAE,SAAS,EAAE,OAAO,GAAG,QAAQ;IAI9E,oBAAoB,CAAC,YAAY,EAAE,gBAAgB,EAAE,SAAS,EAAE,OAAO,GAAG,QAAQ;IAIlF,kCAAkC,CAAC,UAAU,EAAE,gBAAgB,GAAG,IAAI;IAItE,oCAAoC,CAAC,YAAY,EAAE,gBAAgB,GAAG,IAAI;IAI1E,WAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,YAAY,EAAE,gBAAgB,GAAG,cAAc;IAI9E,gBAAgB,IAAI,MAAM,EAAE;IAI5B,oBAAoB,CAAC,iBAAiB,EAAE,IAAI,GAAG,gBAAgB;IAI/D,iBAAiB,CAAC,iBAAiB,EAAE,IAAI,GAAG,gBAAgB;IAI5D,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,gBAAgB;IAI9C,gBAAgB,CAAC,QAAQ,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,YAAY,EAAE,gBAAgB,GAAG,cAAc;IAI1G,qCAAqC,CAAC,UAAU,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,IAAI,GAAG,kBAAkB,GAAG,SAAS;IAI5H,uCAAuC,CAAC,YAAY,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,IAAI,GAAG,kBAAkB,GAAG,SAAS;IAIhI,wBAAwB,CAAC,gBAAgB,EAAE,gBAAgB,GAAG,kBAAkB,GAAG,SAAS;IAI5F,uBAAuB,CAAC,QAAQ,EAAE,OAAO,EAAE,YAAY,EAAE,gBAAgB,GAAG,IAAI;IAIhF,yBAAyB,CAAC,gBAAgB,EAAE,gBAAgB,GAAG,qBAAqB,GAAG,SAAS;IAIhG,+BAA+B,CAAC,UAAU,EAAE,gBAAgB,EAAE,WAAW,EAAE,IAAI,GAAG,QAAQ;IAI1F,iCAAiC,CAAC,YAAY,EAAE,gBAAgB,EAAE,WAAW,EAAE,IAAI,GAAG,QAAQ;IAI9F,4BAA4B,CAAC,UAAU,EAAE,gBAAgB,GAAG,IAAI;IAIhE,8BAA8B,CAAC,YAAY,EAAE,gBAAgB,GAAG,IAAI;IAIpE,WAAW,IAAI,CAAC,gBAAgB,EAAE,gBAAgB,EAAE,gBAAgB,CAAC;IAIrE,YAAY,IAAI,IAAI;IAIpB,wBAAwB,IAAI,IAAI;IAIhC,UAAU,IAAI,OAAO;IAIrB,kBAAkB,IAAI,IAAI;IAI1B,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAIpC,+BAA+B,IAAI,IAAI;IAIvC,mBAAmB,IAAI,MAAM;IAI7B,sBAAsB,CAAC,YAAY,EAAE,cAAc,GAAG,gBAAgB;IAItE,mBAAmB,CAAC,YAAY,EAAE,wBAAwB,GAAG,OAAO,CAAC,wBAAwB,CAAC,GAAG,gBAAgB;IAIjH,QAAQ,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,cAAc,GAAG,iBAAiB;IAIxE,mBAAmB,CAAC,YAAY,EAAE,wBAAwB,GAAG,OAAO,CAAC,wBAAwB,CAAC,GAAG,cAAc,GAAG,wBAAwB;IAI1I,kBAAkB,CAAC,SAAS,EAAE,gBAAgB,EAAE,GAAG,EAAE,gBAAgB,GAAG,OAAO;IAI/E,cAAc,CAAC,MAAM,EAAE,eAAe,EAAE,KAAK,EAAE,gBAAgB,EAAE,OAAO,EAAE,gBAAgB,GAAG,OAAO;IAIpG,aAAa,CAAC,GAAG,OAAO,EAAE,CAAC,UAAU,CAAC,GAAG,CAAC,wBAAwB,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,MAAM,EAAE;QAAE,OAAO,CAAC,EAAE,SAAS,CAAC;QAAC,MAAM,CAAC,EAAE,SAAS,EAAE,CAAA;KAAE,CAAC,GAAG,SAAS;IAIvJ,WAAW,IAAI,gBAAgB;IAI/B,mBAAmB,CAAC,iBAAiB,EAAE,IAAI,GAAG,OAAO;IAIrD,eAAe,CAAC,eAAe,EAAE,SAAS,GAAG,SAAS;CAGvD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"XyoChainBlockNumberIterator.d.ts","sourceRoot":"","sources":["../../src/XyoChainBlockNumberIterator.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAE5C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AAErE,OAAO,KAAK,EACV,iBAAiB,EAAE,mBAAmB,EACtC,sBAAsB,EACtB,gCAAgC,EAChC,sBAAsB,EACvB,MAAM,2BAA2B,CAAA;AAKlC,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAEpC,qBAAa,2BAA4B,SAAQ,WAAW,CAAC,UAAU,EAAE,sBAAsB,CAAE,YAAW,gCAAgC;IAC1I,SAAS,CAAC,oBAAoB,+CAA2D;IACzF,SAAS,CAAC,eAAe,EAAE,iBAAiB,CAAA;IAC5C,SAAS,CAAC,iBAAiB,EAAE,mBAAmB,CAAA;IAChD,SAAS,CAAC,KAAK,EAAE,iBAAiB,CAAA;IAElC,SAAS,aAAa,MAAM,EAAE,sBAAsB;IAQpD,IAAI,SAAS,IAAI,iBAAiB,CAAgC;IAElE,IAAI,mBAAmB,IAAI,mBAAmB,CAAkC;WAEnE,MAAM,CAAC,MAAM,EAAE,sBAAsB,GAAG,OAAO,CAAC,2BAA2B,CAAC;IAKnF,GAAG,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAwB9C,IAAI,IAAI,OAAO,CAAC,iBAAiB,CAAC;IAIlC,IAAI,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,GAAG,SAAS,CAAC;IAQ3D,QAAQ,CAAC,KAAK,GAAE,MAAM,GAAG,SAAqB,EAAE,KAAK,GAAE,MAAU,GAAG,OAAO,CAAC,iBAAiB,EAAE,CAAC;IAkBhG,UAAU,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC;CAMzD"}
|
package/src/BaseEthProvider.ts
DELETED
|
@@ -1,219 +0,0 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
Address, BlockAPI,
|
|
3
|
-
BlockNumberOrTag,
|
|
4
|
-
CompileResultAPI,
|
|
5
|
-
EthExecutionAPI,
|
|
6
|
-
FeeHistoryResultAPI,
|
|
7
|
-
Filter,
|
|
8
|
-
FilterResultsAPI,
|
|
9
|
-
HexString, HexString8Bytes,
|
|
10
|
-
HexString32Bytes,
|
|
11
|
-
HexString256Bytes,
|
|
12
|
-
HexStringBytes,
|
|
13
|
-
SignedTransactionInfoAPI,
|
|
14
|
-
SyncingStatusAPI,
|
|
15
|
-
TransactionCallAPI,
|
|
16
|
-
TransactionInfoAPI,
|
|
17
|
-
TransactionReceiptAPI,
|
|
18
|
-
TransactionWithSenderAPI,
|
|
19
|
-
Uint,
|
|
20
|
-
Uint256,
|
|
21
|
-
} from 'web3-types'
|
|
22
|
-
|
|
23
|
-
export class BaseEthProvider implements EthExecutionAPI {
|
|
24
|
-
eth_accounts(): Address[] {
|
|
25
|
-
throw new Error('Method not implemented.')
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
eth_blockNumber(): Uint {
|
|
29
|
-
throw new Error('Method not implemented.')
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
eth_call(_transaction: TransactionCallAPI, _blockNumber: BlockNumberOrTag): HexStringBytes {
|
|
33
|
-
throw new Error('Method not implemented.')
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
eth_clearSubscriptions(_keepSyncing?: boolean): void {
|
|
37
|
-
throw new Error('Method not implemented.')
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
eth_coinbase(): Address {
|
|
41
|
-
throw new Error('Method not implemented.')
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
eth_compileLLL(_code: string): HexStringBytes {
|
|
45
|
-
throw new Error('Method not implemented.')
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
eth_compileSerpent(_code: string): HexStringBytes {
|
|
49
|
-
throw new Error('Method not implemented.')
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
eth_compileSolidity(_code: string): CompileResultAPI {
|
|
53
|
-
throw new Error('Method not implemented.')
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
eth_estimateGas(_transaction: Partial<TransactionWithSenderAPI>, _blockNumber: BlockNumberOrTag): Uint {
|
|
57
|
-
throw new Error('Method not implemented.')
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
eth_feeHistory(_blockCount: Uint, _newestBlock: BlockNumberOrTag, _rewardPercentiles: number[]): FeeHistoryResultAPI {
|
|
61
|
-
throw new Error('Method not implemented.')
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
eth_gasPrice(): Uint {
|
|
65
|
-
throw new Error('Method not implemented.')
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
eth_getBalance(_address: Address, _blockNumber: BlockNumberOrTag): Uint {
|
|
69
|
-
throw new Error('Method not implemented.')
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
eth_getBlockByHash(_blockHash: HexString32Bytes, _hydrated: boolean): BlockAPI {
|
|
73
|
-
throw new Error('Method not implemented.')
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
eth_getBlockByNumber(_blockNumber: BlockNumberOrTag, _hydrated: boolean): BlockAPI {
|
|
77
|
-
throw new Error('Method not implemented.')
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
eth_getBlockTransactionCountByHash(_blockHash: HexString32Bytes): Uint {
|
|
81
|
-
throw new Error('Method not implemented.')
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
eth_getBlockTransactionCountByNumber(_blockNumber: BlockNumberOrTag): Uint {
|
|
85
|
-
throw new Error('Method not implemented.')
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
eth_getCode(_address: Address, _blockNumber: BlockNumberOrTag): HexStringBytes {
|
|
89
|
-
throw new Error('Method not implemented.')
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
eth_getCompilers(): string[] {
|
|
93
|
-
throw new Error('Method not implemented.')
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
eth_getFilterChanges(_filterIdentifier: Uint): FilterResultsAPI {
|
|
97
|
-
throw new Error('Method not implemented.')
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
eth_getFilterLogs(_filterIdentifier: Uint): FilterResultsAPI {
|
|
101
|
-
throw new Error('Method not implemented.')
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
eth_getLogs(_filter: Filter): FilterResultsAPI {
|
|
105
|
-
throw new Error('Method not implemented.')
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
eth_getStorageAt(_address: Address, _storageSlot: Uint256, _blockNumber: BlockNumberOrTag): HexStringBytes {
|
|
109
|
-
throw new Error('Method not implemented.')
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
eth_getTransactionByBlockHashAndIndex(_blockHash: HexString32Bytes, _transactionIndex: Uint): TransactionInfoAPI | undefined {
|
|
113
|
-
throw new Error('Method not implemented.')
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
eth_getTransactionByBlockNumberAndIndex(_blockNumber: BlockNumberOrTag, _transactionIndex: Uint): TransactionInfoAPI | undefined {
|
|
117
|
-
throw new Error('Method not implemented.')
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
eth_getTransactionByHash(_transactionHash: HexString32Bytes): TransactionInfoAPI | undefined {
|
|
121
|
-
throw new Error('Method not implemented.')
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
eth_getTransactionCount(_address: Address, _blockNumber: BlockNumberOrTag): Uint {
|
|
125
|
-
throw new Error('Method not implemented.')
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
eth_getTransactionReceipt(_transactionHash: HexString32Bytes): TransactionReceiptAPI | undefined {
|
|
129
|
-
throw new Error('Method not implemented.')
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
eth_getUncleByBlockHashAndIndex(_blockHash: HexString32Bytes, _uncleIndex: Uint): BlockAPI {
|
|
133
|
-
throw new Error('Method not implemented.')
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
eth_getUncleByBlockNumberAndIndex(_blockNumber: BlockNumberOrTag, _uncleIndex: Uint): BlockAPI {
|
|
137
|
-
throw new Error('Method not implemented.')
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
eth_getUncleCountByBlockHash(_blockHash: HexString32Bytes): Uint {
|
|
141
|
-
throw new Error('Method not implemented.')
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
eth_getUncleCountByBlockNumber(_blockNumber: BlockNumberOrTag): Uint {
|
|
145
|
-
throw new Error('Method not implemented.')
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
eth_getWork(): [HexString32Bytes, HexString32Bytes, HexString32Bytes] {
|
|
149
|
-
throw new Error('Method not implemented.')
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
eth_hashrate(): Uint {
|
|
153
|
-
throw new Error('Method not implemented.')
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
eth_maxPriorityFeePerGas(): Uint {
|
|
157
|
-
throw new Error('Method not implemented.')
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
eth_mining(): boolean {
|
|
161
|
-
throw new Error('Method not implemented.')
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
eth_newBlockFilter(): Uint {
|
|
165
|
-
throw new Error('Method not implemented.')
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
eth_newFilter(_filter: Filter): Uint {
|
|
169
|
-
throw new Error('Method not implemented.')
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
eth_newPendingTransactionFilter(): Uint {
|
|
173
|
-
throw new Error('Method not implemented.')
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
eth_protocolVersion(): string {
|
|
177
|
-
throw new Error('Method not implemented.')
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
eth_sendRawTransaction(_transaction: HexStringBytes): HexString32Bytes {
|
|
181
|
-
throw new Error('Method not implemented.')
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
eth_sendTransaction(_transaction: TransactionWithSenderAPI | Partial<TransactionWithSenderAPI>): HexString32Bytes {
|
|
185
|
-
throw new Error('Method not implemented.')
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
eth_sign(_address: Address, _message: HexStringBytes): HexString256Bytes {
|
|
189
|
-
throw new Error('Method not implemented.')
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
eth_signTransaction(_transaction: TransactionWithSenderAPI | Partial<TransactionWithSenderAPI>): HexStringBytes | SignedTransactionInfoAPI {
|
|
193
|
-
throw new Error('Method not implemented.')
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
eth_submitHashrate(_hashRate: HexString32Bytes, _id: HexString32Bytes): boolean {
|
|
197
|
-
throw new Error('Method not implemented.')
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
eth_submitWork(_nonce: HexString8Bytes, _hash: HexString32Bytes, _digest: HexString32Bytes): boolean {
|
|
201
|
-
throw new Error('Method not implemented.')
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
eth_subscribe(..._params: ['newHeads'] | ['newPendingTransactions'] | ['syncing'] | ['logs', { address?: HexString; topics?: HexString[] }]): HexString {
|
|
205
|
-
throw new Error('Method not implemented.')
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
eth_syncing(): SyncingStatusAPI {
|
|
209
|
-
throw new Error('Method not implemented.')
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
eth_uninstallFilter(_filterIdentifier: Uint): boolean {
|
|
213
|
-
throw new Error('Method not implemented.')
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
eth_unsubscribe(_subscriptionId: HexString): HexString {
|
|
217
|
-
throw new Error('Method not implemented.')
|
|
218
|
-
}
|
|
219
|
-
}
|