@avalabs/vm-module-types
Advanced tools
Comparing version 0.0.0-cp-8362-20240708172355 to 0.0.0-cp-8362-20240708190806
# @avalabs/vm-module-types | ||
## 0.0.0-cp-8362-20240708172355 | ||
## 0.0.0-cp-8362-20240708190806 | ||
@@ -5,0 +5,0 @@ ### Patch Changes |
{ | ||
"name": "@avalabs/vm-module-types", | ||
"version": "0.0.0-cp-8362-20240708172355", | ||
"version": "0.0.0-cp-8362-20240708190806", | ||
"main": "src/index.ts", | ||
@@ -13,3 +13,3 @@ "dependencies": { | ||
"@avalabs/utils-sdk": "2.8.0-canary.b4769c9.0", | ||
"eslint-config-custom": "0.0.0-cp-8362-20240708172355" | ||
"eslint-config-custom": "0.0.0-cp-8362-20240708190806" | ||
}, | ||
@@ -16,0 +16,0 @@ "scripts": { |
@@ -1,2 +0,2 @@ | ||
import type { Cache, Network } from './common'; | ||
import type { Storage, Network } from './common'; | ||
import type { NetworkContractToken, NetworkToken, TokenType } from './token'; | ||
@@ -11,3 +11,3 @@ import BN from 'bn.js'; | ||
currency: string; | ||
cache?: Cache; | ||
storage?: Storage; | ||
}; | ||
@@ -14,0 +14,0 @@ |
@@ -22,3 +22,3 @@ import type { NetworkToken } from './token'; | ||
export type Cache = { | ||
export type Storage = { | ||
get: (id: string) => unknown; | ||
@@ -25,0 +25,0 @@ set: (id: string, data: unknown) => void; |
9761