@sentio/sdk 2.11.0-rc.6 → 2.11.0-rc.7
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/lib/aptos/aptos-processor.js +4 -2
 - package/lib/aptos/aptos-processor.js.map +1 -1
 - package/lib/aptos/builtin/0x1.js +38 -19
 - package/lib/aptos/builtin/0x1.js.map +1 -1
 - package/lib/aptos/builtin/0x3.js +8 -4
 - package/lib/aptos/builtin/0x3.js.map +1 -1
 - package/lib/core/event-tracker.js +6 -3
 - package/lib/core/event-tracker.js.map +1 -1
 - package/lib/core/exporter.js +2 -1
 - package/lib/core/exporter.js.map +1 -1
 - package/lib/core/meter.js +2 -1
 - package/lib/core/meter.js.map +1 -1
 - package/lib/eth/account-processor-state.js +2 -1
 - package/lib/eth/account-processor-state.js.map +1 -1
 - package/lib/eth/base-processor-template.js +4 -2
 - package/lib/eth/base-processor-template.js.map +1 -1
 - package/lib/eth/binds.js +2 -1
 - package/lib/eth/binds.js.map +1 -1
 - package/lib/eth/builtin/internal/eacaggregatorproxy-processor.js +2 -1
 - package/lib/eth/builtin/internal/eacaggregatorproxy-processor.js.map +1 -1
 - package/lib/eth/builtin/internal/erc1155-processor.js +2 -1
 - package/lib/eth/builtin/internal/erc1155-processor.js.map +1 -1
 - package/lib/eth/builtin/internal/erc20-processor.js +2 -1
 - package/lib/eth/builtin/internal/erc20-processor.js.map +1 -1
 - package/lib/eth/builtin/internal/erc20bytes-processor.js +2 -1
 - package/lib/eth/builtin/internal/erc20bytes-processor.js.map +1 -1
 - package/lib/eth/builtin/internal/erc721-processor.js +2 -1
 - package/lib/eth/builtin/internal/erc721-processor.js.map +1 -1
 - package/lib/eth/builtin/internal/factories/EACAggregatorProxy__factory.js +2 -1
 - package/lib/eth/builtin/internal/factories/EACAggregatorProxy__factory.js.map +1 -1
 - package/lib/eth/builtin/internal/factories/ERC1155__factory.js +2 -1
 - package/lib/eth/builtin/internal/factories/ERC1155__factory.js.map +1 -1
 - package/lib/eth/builtin/internal/factories/ERC20Bytes__factory.js +2 -1
 - package/lib/eth/builtin/internal/factories/ERC20Bytes__factory.js.map +1 -1
 - package/lib/eth/builtin/internal/factories/ERC20__factory.js +2 -1
 - package/lib/eth/builtin/internal/factories/ERC20__factory.js.map +1 -1
 - package/lib/eth/builtin/internal/factories/ERC721__factory.js +2 -1
 - package/lib/eth/builtin/internal/factories/ERC721__factory.js.map +1 -1
 - package/lib/eth/builtin/internal/factories/WETH9__factory.js +2 -1
 - package/lib/eth/builtin/internal/factories/WETH9__factory.js.map +1 -1
 - package/lib/eth/builtin/internal/weth9-processor.js +2 -1
 - package/lib/eth/builtin/internal/weth9-processor.js.map +1 -1
 - package/lib/solana/solana-processor.js +2 -1
 - package/lib/solana/solana-processor.js.map +1 -1
 - package/lib/sui/builtin/0x1.js +10 -5
 - package/lib/sui/builtin/0x1.js.map +1 -1
 - package/lib/sui/builtin/0x2.js +26 -13
 - package/lib/sui/builtin/0x2.js.map +1 -1
 - package/lib/sui/builtin/0x3.js +12 -6
 - package/lib/sui/builtin/0x3.js.map +1 -1
 - package/lib/sui/sui-processor.js +4 -2
 - package/lib/sui/sui-processor.js.map +1 -1
 - package/package.json +7 -7
 
    
        package/lib/sui/builtin/0x3.js
    CHANGED
    
    | 
         @@ -4,7 +4,7 @@ 
     | 
|
| 
       4 
4 
     | 
    
         
             
            import { defaultMoveCoder, SuiBaseProcessor, SuiNetwork, } from "@sentio/sdk/sui";
         
     | 
| 
       5 
5 
     | 
    
         
             
            import * as _0x1 from "./0x1.js";
         
     | 
| 
       6 
6 
     | 
    
         
             
            import * as _0x2 from "./0x2.js";
         
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
      
 7 
     | 
    
         
            +
            class genesis extends SuiBaseProcessor {
         
     | 
| 
       8 
8 
     | 
    
         
             
                constructor(options) {
         
     | 
| 
       9 
9 
     | 
    
         
             
                    super("genesis", options);
         
     | 
| 
       10 
10 
     | 
    
         
             
                }
         
     | 
| 
         @@ -28,6 +28,7 @@ export class genesis extends SuiBaseProcessor { 
     | 
|
| 
       28 
28 
     | 
    
         
             
                    return this;
         
     | 
| 
       29 
29 
     | 
    
         
             
                }
         
     | 
| 
       30 
30 
     | 
    
         
             
            }
         
     | 
| 
      
 31 
     | 
    
         
            +
            export { genesis };
         
     | 
| 
       31 
32 
     | 
    
         
             
            (function (genesis) {
         
     | 
| 
       32 
33 
     | 
    
         
             
                class GenesisChainParameters {
         
     | 
| 
       33 
34 
     | 
    
         
             
                    static TYPE_QNAME = "0x3::genesis::GenesisChainParameters";
         
     | 
| 
         @@ -91,7 +92,7 @@ export var stake_subsidy; 
     | 
|
| 
       91 
92 
     | 
    
         
             
                }
         
     | 
| 
       92 
93 
     | 
    
         
             
                stake_subsidy.StakeSubsidy = StakeSubsidy;
         
     | 
| 
       93 
94 
     | 
    
         
             
            })(stake_subsidy || (stake_subsidy = {}));
         
     | 
| 
       94 
     | 
    
         
            -
             
     | 
| 
      
 95 
     | 
    
         
            +
            class staking_pool extends SuiBaseProcessor {
         
     | 
| 
       95 
96 
     | 
    
         
             
                constructor(options) {
         
     | 
| 
       96 
97 
     | 
    
         
             
                    super("staking_pool", options);
         
     | 
| 
       97 
98 
     | 
    
         
             
                }
         
     | 
| 
         @@ -123,6 +124,7 @@ export class staking_pool extends SuiBaseProcessor { 
     | 
|
| 
       123 
124 
     | 
    
         
             
                    return this;
         
     | 
| 
       124 
125 
     | 
    
         
             
                }
         
     | 
| 
       125 
126 
     | 
    
         
             
            }
         
     | 
| 
      
 127 
     | 
    
         
            +
            export { staking_pool };
         
     | 
| 
       126 
128 
     | 
    
         
             
            (function (staking_pool) {
         
     | 
| 
       127 
129 
     | 
    
         
             
                class PoolTokenExchangeRate {
         
     | 
| 
       128 
130 
     | 
    
         
             
                    static TYPE_QNAME = "0x3::staking_pool::PoolTokenExchangeRate";
         
     | 
| 
         @@ -163,7 +165,7 @@ export var storage_fund; 
     | 
|
| 
       163 
165 
     | 
    
         
             
                }
         
     | 
| 
       164 
166 
     | 
    
         
             
                storage_fund.StorageFund = StorageFund;
         
     | 
| 
       165 
167 
     | 
    
         
             
            })(storage_fund || (storage_fund = {}));
         
     | 
| 
       166 
     | 
    
         
            -
             
     | 
| 
      
 168 
     | 
    
         
            +
            class sui_system extends SuiBaseProcessor {
         
     | 
| 
       167 
169 
     | 
    
         
             
                constructor(options) {
         
     | 
| 
       168 
170 
     | 
    
         
             
                    super("sui_system", options);
         
     | 
| 
       169 
171 
     | 
    
         
             
                }
         
     | 
| 
         @@ -399,6 +401,7 @@ export class sui_system extends SuiBaseProcessor { 
     | 
|
| 
       399 
401 
     | 
    
         
             
                    return this;
         
     | 
| 
       400 
402 
     | 
    
         
             
                }
         
     | 
| 
       401 
403 
     | 
    
         
             
            }
         
     | 
| 
      
 404 
     | 
    
         
            +
            export { sui_system };
         
     | 
| 
       402 
405 
     | 
    
         
             
            (function (sui_system) {
         
     | 
| 
       403 
406 
     | 
    
         
             
                class SuiSystemState {
         
     | 
| 
       404 
407 
     | 
    
         
             
                    static TYPE_QNAME = "0x3::sui_system::SuiSystemState";
         
     | 
| 
         @@ -407,7 +410,7 @@ export class sui_system extends SuiBaseProcessor { 
     | 
|
| 
       407 
410 
     | 
    
         
             
                }
         
     | 
| 
       408 
411 
     | 
    
         
             
                sui_system.SuiSystemState = SuiSystemState;
         
     | 
| 
       409 
412 
     | 
    
         
             
            })(sui_system || (sui_system = {}));
         
     | 
| 
       410 
     | 
    
         
            -
             
     | 
| 
      
 413 
     | 
    
         
            +
            class sui_system_state_inner extends SuiBaseProcessor {
         
     | 
| 
       411 
414 
     | 
    
         
             
                constructor(options) {
         
     | 
| 
       412 
415 
     | 
    
         
             
                    super("sui_system_state_inner", options);
         
     | 
| 
       413 
416 
     | 
    
         
             
                }
         
     | 
| 
         @@ -428,6 +431,7 @@ export class sui_system_state_inner extends SuiBaseProcessor { 
     | 
|
| 
       428 
431 
     | 
    
         
             
                    return this;
         
     | 
| 
       429 
432 
     | 
    
         
             
                }
         
     | 
| 
       430 
433 
     | 
    
         
             
            }
         
     | 
| 
      
 434 
     | 
    
         
            +
            export { sui_system_state_inner };
         
     | 
| 
       431 
435 
     | 
    
         
             
            (function (sui_system_state_inner) {
         
     | 
| 
       432 
436 
     | 
    
         
             
                class SuiSystemStateInner {
         
     | 
| 
       433 
437 
     | 
    
         
             
                    static TYPE_QNAME = "0x3::sui_system_state_inner::SuiSystemStateInner";
         
     | 
| 
         @@ -478,7 +482,7 @@ export class sui_system_state_inner extends SuiBaseProcessor { 
     | 
|
| 
       478 
482 
     | 
    
         
             
                }
         
     | 
| 
       479 
483 
     | 
    
         
             
                sui_system_state_inner.SystemParameters = SystemParameters;
         
     | 
| 
       480 
484 
     | 
    
         
             
            })(sui_system_state_inner || (sui_system_state_inner = {}));
         
     | 
| 
       481 
     | 
    
         
            -
             
     | 
| 
      
 485 
     | 
    
         
            +
            class validator extends SuiBaseProcessor {
         
     | 
| 
       482 
486 
     | 
    
         
             
                constructor(options) {
         
     | 
| 
       483 
487 
     | 
    
         
             
                    super("validator", options);
         
     | 
| 
       484 
488 
     | 
    
         
             
                }
         
     | 
| 
         @@ -502,6 +506,7 @@ export class validator extends SuiBaseProcessor { 
     | 
|
| 
       502 
506 
     | 
    
         
             
                    return this;
         
     | 
| 
       503 
507 
     | 
    
         
             
                }
         
     | 
| 
       504 
508 
     | 
    
         
             
            }
         
     | 
| 
      
 509 
     | 
    
         
            +
            export { validator };
         
     | 
| 
       505 
510 
     | 
    
         
             
            (function (validator) {
         
     | 
| 
       506 
511 
     | 
    
         
             
                class StakingRequestEvent {
         
     | 
| 
       507 
512 
     | 
    
         
             
                    static TYPE_QNAME = "0x3::validator::StakingRequestEvent";
         
     | 
| 
         @@ -578,7 +583,7 @@ export var validator_cap; 
     | 
|
| 
       578 
583 
     | 
    
         
             
                }
         
     | 
| 
       579 
584 
     | 
    
         
             
                validator_cap.ValidatorOperationCap = ValidatorOperationCap;
         
     | 
| 
       580 
585 
     | 
    
         
             
            })(validator_cap || (validator_cap = {}));
         
     | 
| 
       581 
     | 
    
         
            -
             
     | 
| 
      
 586 
     | 
    
         
            +
            class validator_set extends SuiBaseProcessor {
         
     | 
| 
       582 
587 
     | 
    
         
             
                constructor(options) {
         
     | 
| 
       583 
588 
     | 
    
         
             
                    super("validator_set", options);
         
     | 
| 
       584 
589 
     | 
    
         
             
                }
         
     | 
| 
         @@ -608,6 +613,7 @@ export class validator_set extends SuiBaseProcessor { 
     | 
|
| 
       608 
613 
     | 
    
         
             
                    return this;
         
     | 
| 
       609 
614 
     | 
    
         
             
                }
         
     | 
| 
       610 
615 
     | 
    
         
             
            }
         
     | 
| 
      
 616 
     | 
    
         
            +
            export { validator_set };
         
     | 
| 
       611 
617 
     | 
    
         
             
            (function (validator_set) {
         
     | 
| 
       612 
618 
     | 
    
         
             
                class ValidatorEpochInfoEvent {
         
     | 
| 
       613 
619 
     | 
    
         
             
                    static TYPE_QNAME = "0x3::validator_set::ValidatorEpochInfoEvent";
         
     |