New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@avalabs/bridge-unified

Package Overview
Dependencies
Maintainers
1
Versions
188
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@avalabs/bridge-unified - npm Package Compare versions

Comparing version 0.0.0-feat-unified-api-interface-20240105200017 to 0.0.0-feat-unified-api-interface-20240105201043

2

CHANGELOG.md
# @avalabs/unified-bridge
## 0.0.0-feat-unified-api-interface-20240105200017
## 0.0.0-feat-unified-api-interface-20240105201043

@@ -5,0 +5,0 @@ ### Major Changes

@@ -1,2 +0,2 @@

import { Address, TransactionRequest, Hex } from 'viem';
import { Address } from 'viem';

@@ -40,2 +40,16 @@ type Chain = {

type Hex = `0x${string}`;
type TransactionRequest = {
type?: number | null;
data?: Hex | null;
from: Address;
gas?: bigint;
nonce?: number;
to?: Address | null;
value?: bigint;
gasPrice?: bigint | null;
gasLimit?: bigint | null;
maxPriorityFeePerGas?: bigint | null;
maxFeePerGas?: bigint | null;
};
type RequestArguments = {

@@ -173,2 +187,2 @@ method: string;

export { Asset, AssetFeeMap, BridgeAsset, BridgeConfig, BridgeService, BridgeServiceConfig, BridgeServiceFactory, BridgeTransfer, BridgeType, Chain, ChainAssetMap, DestinationInfo, Environment, ErrorCode, ErrorReason, FeeParams, Provider, TokenType, TrackingParams, TransferParams, createUnifiedBridgeService };
export { Asset, AssetFeeMap, BridgeAsset, BridgeConfig, BridgeService, BridgeServiceConfig, BridgeServiceFactory, BridgeTransfer, BridgeType, Chain, ChainAssetMap, DestinationInfo, Environment, ErrorCode, ErrorReason, FeeParams, Hex, Provider, TokenType, TrackingParams, TransactionRequest, TransferParams, createUnifiedBridgeService };
{
"name": "@avalabs/bridge-unified",
"version": "0.0.0-feat-unified-api-interface-20240105200017",
"version": "0.0.0-feat-unified-api-interface-20240105201043",
"main": "dist/index.js",

@@ -18,3 +18,3 @@ "type": "module",

"@internal/tsup-config": "0.0.1",
"eslint-config-custom": "0.0.0-feat-unified-api-interface-20240105200017"
"eslint-config-custom": "0.0.0-feat-unified-api-interface-20240105201043"
},

@@ -21,0 +21,0 @@ "scripts": {

@@ -1,3 +0,18 @@

import type { Hex, TransactionRequest } from 'viem';
import type { Address } from 'viem';
export type Hex = `0x${string}`;
export type TransactionRequest = {
type?: number | null;
data?: Hex | null;
from: Address;
gas?: bigint;
nonce?: number;
to?: Address | null;
value?: bigint;
gasPrice?: bigint | null;
gasLimit?: bigint | null;
maxPriorityFeePerGas?: bigint | null;
maxFeePerGas?: bigint | null;
};
type RequestArguments = {

@@ -4,0 +19,0 @@ method: string;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc