@mysten/sui.js
Advanced tools
Comparing version 0.0.0-experimental-20220902162843 to 0.0.0-experimental-20220902185600
@@ -25,2 +25,3 @@ import { SuiAddress, ObjectOwner } from "./common"; | ||
type: string; | ||
amount: number | null; | ||
}; | ||
@@ -27,0 +28,0 @@ export declare type DeleteObjectEvent = { |
@@ -5,3 +5,3 @@ { | ||
"description": "Sui TypeScript API(Work in Progress)", | ||
"version": "0.0.0-experimental-20220902162843", | ||
"version": "0.0.0-experimental-20220902185600", | ||
"license": "Apache-2.0", | ||
@@ -74,3 +74,3 @@ "files": [ | ||
"dependencies": { | ||
"@mysten/bcs": "0.0.0-experimental-20220902162843", | ||
"@mysten/bcs": "0.0.0-experimental-20220902185600", | ||
"bn.js": "^5.2.0", | ||
@@ -77,0 +77,0 @@ "buffer": "^6.0.3", |
@@ -31,2 +31,3 @@ // Copyright (c) 2022, Mysten Labs, Inc. | ||
type: string; // TODO - better type | ||
amount: number | null; | ||
}; | ||
@@ -33,0 +34,0 @@ |
@@ -424,3 +424,5 @@ // Copyright (c) 2022, Mysten Labs, Inc. | ||
isSuiMoveTypeParameterIndex(obj.version) as boolean && | ||
isTransactionDigest(obj.type) as boolean | ||
isTransactionDigest(obj.type) as boolean && | ||
(obj.amount === null || | ||
isSuiMoveTypeParameterIndex(obj.amount) as boolean) | ||
) | ||
@@ -427,0 +429,0 @@ } |
Sorry, the diff of this file is not supported yet
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
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
724485
9318
+ Added@mysten/bcs@0.0.0-experimental-20220902185600(transitive)
- Removed@mysten/bcs@0.0.0-experimental-20220902162843(transitive)