@wallet-standard/experimental-features
Advanced tools
Comparing version 0.1.0-rc.5 to 0.1.0-rc.6
@@ -20,2 +20,5 @@ "use strict"; | ||
__exportStar(require("./encrypt.js"), exports); | ||
__exportStar(require("./signAndSendTransaction.js"), exports); | ||
__exportStar(require("./signMessage.js"), exports); | ||
__exportStar(require("./signTransaction.js"), exports); | ||
//# sourceMappingURL=index.js.map |
export * from './ciphers.js'; | ||
export * from './decrypt.js'; | ||
export * from './encrypt.js'; | ||
export * from './signAndSendTransaction.js'; | ||
export * from './signMessage.js'; | ||
export * from './signTransaction.js'; | ||
//# sourceMappingURL=index.js.map |
import type { WalletWithFeatures } from '@wallet-standard/base'; | ||
import type { DecryptFeature } from './decrypt.js'; | ||
import type { EncryptFeature } from './encrypt.js'; | ||
import type { SignAndSendTransactionFeature } from './signAndSendTransaction.js'; | ||
import type { SignMessageFeature } from './signMessage.js'; | ||
import type { SignTransactionFeature } from './signTransaction.js'; | ||
/** TODO: docs */ | ||
export declare type ExperimentalFeatures = DecryptFeature | EncryptFeature; | ||
export declare type ExperimentalFeatures = DecryptFeature | EncryptFeature | SignAndSendTransactionFeature | SignMessageFeature | SignTransactionFeature; | ||
/** TODO: docs */ | ||
@@ -11,2 +14,5 @@ export declare type WalletWithExperimentalFeatures = WalletWithFeatures<ExperimentalFeatures>; | ||
export * from './encrypt.js'; | ||
export * from './signAndSendTransaction.js'; | ||
export * from './signMessage.js'; | ||
export * from './signTransaction.js'; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "@wallet-standard/experimental-features", | ||
"version": "0.1.0-rc.5", | ||
"version": "0.1.0-rc.6", | ||
"author": "Solana Maintainers <maintainers@solana.foundation>", | ||
@@ -29,3 +29,3 @@ "repository": "https://github.com/wallet-standard/wallet-standard", | ||
"dependencies": { | ||
"@wallet-standard/base": "^1.0.0-rc.5" | ||
"@wallet-standard/base": "^1.0.0-rc.6" | ||
}, | ||
@@ -37,4 +37,4 @@ "devDependencies": { | ||
"clean": "shx mkdir -p lib && shx rm -rf lib", | ||
"package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json" | ||
"package": "shx mkdir -p lib/cjs && shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json" | ||
} | ||
} |
import type { WalletWithFeatures } from '@wallet-standard/base'; | ||
import type { DecryptFeature } from './decrypt.js'; | ||
import type { EncryptFeature } from './encrypt.js'; | ||
import type { SignAndSendTransactionFeature } from './signAndSendTransaction.js'; | ||
import type { SignMessageFeature } from './signMessage.js'; | ||
import type { SignTransactionFeature } from './signTransaction.js'; | ||
/** TODO: docs */ | ||
export type ExperimentalFeatures = DecryptFeature | EncryptFeature; | ||
export type ExperimentalFeatures = | ||
| DecryptFeature | ||
| EncryptFeature | ||
| SignAndSendTransactionFeature | ||
| SignMessageFeature | ||
| SignTransactionFeature; | ||
@@ -14,1 +22,4 @@ /** TODO: docs */ | ||
export * from './encrypt.js'; | ||
export * from './signAndSendTransaction.js'; | ||
export * from './signMessage.js'; | ||
export * from './signTransaction.js'; |
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 not supported yet
37568
53
466