@onflow/sdk
Advanced tools
Comparing version 1.5.1 to 1.5.2-alpha.0
{ | ||
"name": "@onflow/sdk", | ||
"version": "1.5.1", | ||
"version": "1.5.2-alpha.0", | ||
"description": "Flow SDK", | ||
@@ -21,3 +21,3 @@ "license": "Apache-2.0", | ||
"devDependencies": { | ||
"@onflow/fcl-bundle": "1.4.2", | ||
"@onflow/fcl-bundle": "1.5.0", | ||
"@types/uuid": "^9.0.6", | ||
@@ -48,3 +48,3 @@ "eslint": "^8.35.0", | ||
"@onflow/transport-http": "1.10.1", | ||
"@onflow/typedefs": "1.3.0", | ||
"@onflow/typedefs": "1.3.1-alpha.0", | ||
"@onflow/util-actor": "1.3.3", | ||
@@ -51,0 +51,0 @@ "@onflow/util-address": "1.2.2", |
@@ -24,5 +24,5 @@ export declare const encodeTransactionPayload: (tx: Transaction) => string; | ||
export interface Transaction { | ||
cadence: string | null; | ||
refBlock: string | null; | ||
computeLimit: string | null; | ||
cadence: string; | ||
refBlock: string; | ||
computeLimit: number; | ||
arguments: VoucherArgument[]; | ||
@@ -29,0 +29,0 @@ proposalKey: TransactionProposalKey; |
@@ -11,3 +11,3 @@ import { Interaction, InteractionAccount } from "@onflow/typedefs"; | ||
} | undefined; | ||
cadence: string | null; | ||
cadence: string; | ||
args: any[]; | ||
@@ -17,5 +17,5 @@ data: {}; | ||
voucher: { | ||
cadence: string | null; | ||
cadence: string; | ||
refBlock: string | null; | ||
computeLimit: string | null; | ||
computeLimit: number; | ||
arguments: any[]; | ||
@@ -22,0 +22,0 @@ proposalKey: { |
@@ -15,3 +15,3 @@ import { Interaction, InteractionAccount } from "@onflow/typedefs"; | ||
}; | ||
cadence: string | null; | ||
cadence: string; | ||
args: any[]; | ||
@@ -21,5 +21,5 @@ data: {}; | ||
voucher: { | ||
cadence: string | null; | ||
cadence: string; | ||
refBlock: string | null; | ||
computeLimit: string | null; | ||
computeLimit: number; | ||
arguments: any[]; | ||
@@ -26,0 +26,0 @@ proposalKey: { |
@@ -6,5 +6,5 @@ import { Voucher } from "../encode/encode"; | ||
export declare const createSignableVoucher: (ix: Interaction) => { | ||
cadence: string | null; | ||
cadence: string; | ||
refBlock: string | null; | ||
computeLimit: string | null; | ||
computeLimit: number; | ||
arguments: any[]; | ||
@@ -11,0 +11,0 @@ proposalKey: { |
@@ -1,1 +0,1 @@ | ||
export function send(args?: Array<Function>, opts?: object): Promise<any>; | ||
export function send(args?: Array<Function> | Function, opts?: object): Promise<any>; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
904273
1
+ Added@onflow/typedefs@1.3.1-alpha.0(transitive)
- Removed@onflow/typedefs@1.3.0(transitive)