Socket
Socket
Sign inDemoInstall

@evmos/provider

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@evmos/provider - npm Package Compare versions

Comparing version 0.2.6 to 0.2.7

30

dist/rest/gov.d.ts

@@ -11,9 +11,29 @@ import { Coin } from './coin';

export declare function generateEndpointProposals(): string;
export interface BaseProposalContent<T = string> {
'@type': T;
title: string;
description: string;
}
export interface SoftwareUpgradeProposalPlan {
name: string;
time: string;
upgraded_client_state: string;
info: string;
height: string;
}
export interface SoftwareUpgradeProposalContent extends BaseProposalContent<'/cosmos.upgrade.v1beta1.SoftwareUpgradeProposal'> {
plan: SoftwareUpgradeProposalPlan;
}
export interface ParameterChangeProposalParam {
subspace: string;
key: string;
value: string;
}
export interface ParameterChangeProposalContent extends BaseProposalContent<'/cosmos.params.v1beta1.ParameterChangeProposal'> {
changes: ParameterChangeProposalParam[];
}
export declare type ProposalContent = BaseProposalContent | SoftwareUpgradeProposalContent | ParameterChangeProposalContent;
export interface Proposal {
proposal_id: string;
content: {
'@type': string;
title: string;
description: string;
};
content: ProposalContent;
status: string;

@@ -20,0 +40,0 @@ final_tally_result: {

6

package.json
{
"name": "@evmos/provider",
"description": "Simple provider to query the EVMOS rest api.",
"version": "0.2.6",
"version": "0.2.7",
"license": "MIT",

@@ -28,3 +28,3 @@ "main": "dist/index.js",

},
"dependencies": {
"devDependencies": {
"@types/node": "^17.0.21",

@@ -34,3 +34,3 @@ "link-module-alias": "^1.2.0",

},
"gitHead": "09da9669022672e0f306b36f383e684dea88dabe",
"gitHead": "163daa731db9dbc5a0e0ec99d791fb982341f986",
"publishConfig": {

@@ -37,0 +37,0 @@ "access": "public"

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