Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cartridge/controller

Package Overview
Dependencies
Maintainers
0
Versions
114
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cartridge/controller - npm Package Compare versions

Comparing version 0.3.32 to 0.3.33

1

dist/index.d.ts

@@ -25,2 +25,3 @@ export * from "./types";

username(): Promise<string> | undefined;
delegateAccount(): Promise<import("starknet").CallContractResponse | null>;
}

@@ -27,0 +28,0 @@ export * from "./types";

@@ -137,2 +137,13 @@ export * from "./types";

}
async delegateAccount() {
if (!this.account) {
console.error(new NotReadyToConnect().message);
return null;
}
return this.account.callContract({
contractAddress: this.account.address,
entrypoint: "delegate_account",
calldata: [],
});
}
}

@@ -139,0 +150,0 @@ export * from "./types";

@@ -75,3 +75,12 @@ export const defaultPresets = {

},
"tale-weaver": {
id: "tale-weaver",
name: "Tale Weaver",
icon: "/whitelabel/tale-weaver/icon.png",
cover: "/whitelabel/tale-weaver/cover.png",
colors: {
primary: "#fce377",
},
}
};
//# sourceMappingURL=presets.js.map

4

package.json
{
"name": "@cartridge/controller",
"version": "0.3.32",
"version": "0.3.33",
"description": "Cartridge Controller",

@@ -22,3 +22,3 @@ "module": "dist/index.js",

"typescript": "^5.4.5",
"@cartridge/tsconfig": "^0.3.32"
"@cartridge/tsconfig": "^0.3.33"
},

@@ -25,0 +25,0 @@ "scripts": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc