@magic-ext/solana 27.0.0-canary.879.15766542943.0 → 27.0.0-canary.915.16760856867.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,4 +2,5 @@ export declare const SOLANA_PAYLOAD_METHODS: {
2
2
  readonly SIGN_TRANSACTION: "sol_signTransaction";
3
3
  readonly SIGN_MESSAGE: "sol_signMessage";
4
4
  readonly PARTIAL_SIGN_TRANSACTION: "sol_partialSignTransaction";
5
+ readonly GET_PUBLIC_ADDRESS: "get_multichain_public_address";
5
6
  };
@@ -32,4 +32,10 @@ export declare class SolanaExtension extends Extension.Internal<'solana', any> {
32
32
  settled: () => void;
33
33
  "closed-by-user": () => void;
34
34
  }>;
35
+ getPublicAddress: () => import("@magic-sdk/commons").PromiEvent<Uint8Array<ArrayBufferLike>, {
36
+ done: (result: Uint8Array<ArrayBufferLike>) => void;
37
+ error: (reason: any) => void;
38
+ settled: () => void;
39
+ "closed-by-user": () => void;
40
+ }>;
35
41
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magic-ext/solana",
3
- "version": "27.0.0-canary.879.15766542943.0",
3
+ "version": "27.0.0-canary.915.16760856867.0",
4
4
  "description": "magic solana extension",
5
5
  "author": "Magic <team@magic.link> (https://magic.link/)",
6
6
  "license": "MIT",
@@ -28,7 +28,7 @@
28
28
  ]
29
29
  },
30
30
  "devDependencies": {
31
- "@magic-sdk/commons": "26.0.0-canary.879.15766542943.0"
31
+ "@magic-sdk/commons": "^25.4.1"
32
32
  },
33
33
  "dependencies": {
34
34
  "@solana/web3.js": "^1.87.2"
@@ -36,5 +36,5 @@
36
36
  "peerDependencies": {
37
37
  "@solana/web3.js": "^1.87.2"
38
38
  },
39
- "gitHead": "ce2552228b63e6ce17d819d07b9d180c99ff4e53"
39
+ "gitHead": "8aa9960c0b9768d9df2d42d645d6248330708204"
40
40
  }