Socket
Socket
Sign inDemoInstall

@0xsequence/provider

Package Overview
Dependencies
12
Maintainers
7
Versions
458
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0-20240315171450 to 0.0.0-20240321190537

3

dist/declarations/src/provider.d.ts

@@ -8,3 +8,2 @@ import { ethers } from 'ethers';

import { SequenceSigner, SingleNetworkSequenceSigner } from "./signer.js";
import { BigIntish } from '@0xsequence/utils';
export interface ISequenceProvider {

@@ -103,3 +102,3 @@ readonly _isSequenceProvider: true;

getCode(addressOrName: string | Promise<string>, blockTag?: ethers.BlockTag, optionals?: OptionalChainIdLike): Promise<string>;
getStorage(addressOrName: string | Promise<string>, position: BigIntish, blockTag?: ethers.BlockTag, optionals?: OptionalChainIdLike): Promise<string>;
getStorage(addressOrName: string | Promise<string>, position: ethers.BigNumberish, blockTag?: ethers.BlockTag, optionals?: OptionalChainIdLike): Promise<string>;
call(transaction: ethers.TransactionRequest, optionals?: OptionalChainIdLike): Promise<string>;

@@ -106,0 +105,0 @@ estimateGas(transaction: ethers.TransactionRequest, optionals?: OptionalChainIdLike): Promise<bigint>;

{
"name": "@0xsequence/provider",
"version": "0.0.0-20240315171450",
"version": "0.0.0-20240321190537",
"description": "provider sub-package for Sequence",

@@ -15,11 +15,11 @@ "repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/provider",

"webextension-polyfill": "^0.10.0",
"@0xsequence/abi": "0.0.0-20240315171450",
"@0xsequence/account": "0.0.0-20240315171450",
"@0xsequence/auth": "0.0.0-20240315171450",
"@0xsequence/core": "0.0.0-20240315171450",
"@0xsequence/migration": "0.0.0-20240315171450",
"@0xsequence/network": "0.0.0-20240315171450",
"@0xsequence/relayer": "0.0.0-20240315171450",
"@0xsequence/utils": "0.0.0-20240315171450",
"@0xsequence/wallet": "0.0.0-20240315171450"
"@0xsequence/abi": "0.0.0-20240321190537",
"@0xsequence/account": "0.0.0-20240321190537",
"@0xsequence/auth": "0.0.0-20240321190537",
"@0xsequence/core": "0.0.0-20240321190537",
"@0xsequence/migration": "0.0.0-20240321190537",
"@0xsequence/network": "0.0.0-20240321190537",
"@0xsequence/relayer": "0.0.0-20240321190537",
"@0xsequence/utils": "0.0.0-20240321190537",
"@0xsequence/wallet": "0.0.0-20240321190537"
},

@@ -26,0 +26,0 @@ "peerDependencies": {

@@ -8,3 +8,2 @@ import { ethers } from 'ethers'

import { SequenceSigner, SingleNetworkSequenceSigner } from './signer'
import { BigIntish } from '@0xsequence/utils'

@@ -405,3 +404,3 @@ export interface ISequenceProvider {

addressOrName: string | Promise<string>,
position: BigIntish,
position: ethers.BigNumberish,
blockTag?: ethers.BlockTag,

@@ -494,3 +493,3 @@ optionals?: OptionalChainIdLike

function normalizeChainId(chainId: BigIntish | { chainId: string }): number {
function normalizeChainId(chainId: ethers.BigNumberish | { chainId: string }): number {
if (typeof chainId === 'object') return normalizeChainId(chainId.chainId)

@@ -497,0 +496,0 @@ return Number(BigInt(chainId))

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc