@avalabs/vm-module-types
Advanced tools
Comparing version 0.0.0-addFunctions-20240621170031 to 0.0.0-addFunctions-20240621170127
# @avalabs/vm-module-types | ||
## 0.0.0-addFunctions-20240621170031 | ||
## 0.0.0-addFunctions-20240621170127 | ||
@@ -5,0 +5,0 @@ ### Patch Changes |
{ | ||
"name": "@avalabs/vm-module-types", | ||
"version": "0.0.0-addFunctions-20240621170031", | ||
"version": "0.0.0-addFunctions-20240621170127", | ||
"main": "src/index.ts", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
@@ -45,6 +45,2 @@ import { object, string, boolean, z } from 'zod'; | ||
WALLET_GET_ETHEREUM_CHAIN = 'wallet_getEthereumChain', | ||
/* UNIVERSAL */ | ||
GET_NETWORK_FEE = 'getNetworkFee', | ||
GET_TRANSACTION_HISTORY = 'getTransactionHistory', | ||
} | ||
@@ -67,2 +63,6 @@ | ||
getManifest: () => Manifest | undefined; | ||
getNetworkFee: () => Promise<RpcResponse<NetworkFees>>; | ||
getTransactionHistory: (params: GetTransactionHistory) => Promise<RpcResponse<TransactionHistoryResponse>>; | ||
getAddress: () => Promise<string>; | ||
getBalances: () => Promise<string>; | ||
onRpcRequest: (request: RpcRequest) => Promise<RpcResponse>; | ||
@@ -69,0 +69,0 @@ } |
5476
175