Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@canvas-js/interfaces

Package Overview
Dependencies
Maintainers
3
Versions
222
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@canvas-js/interfaces - npm Package Compare versions

Comparing version 0.0.17 to 0.0.18

2

lib/contracts.d.ts
export declare type Chain = "eth" | "cosmos" | "solana" | "substrate";
export declare type ChainId = number;
export declare type ChainId = number | string;
export declare type ContractMetadata = {

@@ -4,0 +4,0 @@ chain: Chain;

@@ -6,1 +6,8 @@ export * from "./sessions.js";

export * from "./signers.js";
import type { Session } from "./sessions.js";
import type { Action } from "./actions.js";
export declare type Message = ({
type: "session";
} & Session) | ({
type: "action";
} & Action);
export declare type ModelType = "boolean" | "string" | "integer" | "float" | "datetime";
export declare type IndexType = string[];
export declare type ModelValue = null | boolean | number | string;
export declare type Model = Record<string, ModelType> & {
export declare type Model = {
id: "string";
updated_at: "datetime";
indexes?: IndexType;
};
} & Record<string, ModelType>;
{
"name": "@canvas-js/interfaces",
"version": "0.0.17",
"version": "0.0.18",
"type": "module",

@@ -5,0 +5,0 @@ "author": "Canvas Technology Corporation (https://canvas.xyz)",

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