@dynamic-labs-wallet/core 0.0.80 → 0.0.81
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.
- package/index.cjs.js +4 -4
- package/index.esm.js +4 -4
- package/package.json +1 -1
- package/src/constants.d.ts +1 -1
package/index.cjs.js
CHANGED
|
@@ -32,7 +32,7 @@ const MPC_RELAY_DEV_API_URL = 'http://localhost:4200';
|
|
|
32
32
|
const SOLANA_RPC_URL = 'https://api.devnet.solana.com';
|
|
33
33
|
const chain = {
|
|
34
34
|
EVM: 'EVM',
|
|
35
|
-
|
|
35
|
+
SVM: 'SVM',
|
|
36
36
|
COSMOS: 'COSMOS',
|
|
37
37
|
BTC: 'BTC',
|
|
38
38
|
FLOW: 'FLOW',
|
|
@@ -66,12 +66,12 @@ const ChainEnumToVerifiedCredentialName = {
|
|
|
66
66
|
BTC: 'bip122',
|
|
67
67
|
EVM: 'eip155',
|
|
68
68
|
FLOW: 'flow',
|
|
69
|
-
|
|
69
|
+
SVM: 'solana'
|
|
70
70
|
};
|
|
71
71
|
const VerifiedCredentialNameToChainEnum = {
|
|
72
72
|
bip122: 'BTC',
|
|
73
73
|
eip155: 'EVM',
|
|
74
|
-
solana: '
|
|
74
|
+
solana: 'SVM'
|
|
75
75
|
};
|
|
76
76
|
|
|
77
77
|
var SigningAlgorithm = /*#__PURE__*/ function(SigningAlgorithm) {
|
|
@@ -117,7 +117,7 @@ const MPC_CHAIN_CONFIG = {
|
|
|
117
117
|
],
|
|
118
118
|
signingAlgorithm: "ECDSA"
|
|
119
119
|
},
|
|
120
|
-
|
|
120
|
+
SVM: {
|
|
121
121
|
// Uses Ed25519
|
|
122
122
|
derivationPath: [
|
|
123
123
|
44,
|
package/index.esm.js
CHANGED
|
@@ -30,7 +30,7 @@ const MPC_RELAY_DEV_API_URL = 'http://localhost:4200';
|
|
|
30
30
|
const SOLANA_RPC_URL = 'https://api.devnet.solana.com';
|
|
31
31
|
const chain = {
|
|
32
32
|
EVM: 'EVM',
|
|
33
|
-
|
|
33
|
+
SVM: 'SVM',
|
|
34
34
|
COSMOS: 'COSMOS',
|
|
35
35
|
BTC: 'BTC',
|
|
36
36
|
FLOW: 'FLOW',
|
|
@@ -64,12 +64,12 @@ const ChainEnumToVerifiedCredentialName = {
|
|
|
64
64
|
BTC: 'bip122',
|
|
65
65
|
EVM: 'eip155',
|
|
66
66
|
FLOW: 'flow',
|
|
67
|
-
|
|
67
|
+
SVM: 'solana'
|
|
68
68
|
};
|
|
69
69
|
const VerifiedCredentialNameToChainEnum = {
|
|
70
70
|
bip122: 'BTC',
|
|
71
71
|
eip155: 'EVM',
|
|
72
|
-
solana: '
|
|
72
|
+
solana: 'SVM'
|
|
73
73
|
};
|
|
74
74
|
|
|
75
75
|
var SigningAlgorithm = /*#__PURE__*/ function(SigningAlgorithm) {
|
|
@@ -115,7 +115,7 @@ const MPC_CHAIN_CONFIG = {
|
|
|
115
115
|
],
|
|
116
116
|
signingAlgorithm: "ECDSA"
|
|
117
117
|
},
|
|
118
|
-
|
|
118
|
+
SVM: {
|
|
119
119
|
// Uses Ed25519
|
|
120
120
|
derivationPath: [
|
|
121
121
|
44,
|
package/package.json
CHANGED
package/src/constants.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export declare const MPC_RELAY_DEV_API_URL = "http://localhost:4200";
|
|
|
26
26
|
export declare const SOLANA_RPC_URL = "https://api.devnet.solana.com";
|
|
27
27
|
export declare const chain: {
|
|
28
28
|
readonly EVM: "EVM";
|
|
29
|
-
readonly
|
|
29
|
+
readonly SVM: "SVM";
|
|
30
30
|
readonly COSMOS: "COSMOS";
|
|
31
31
|
readonly BTC: "BTC";
|
|
32
32
|
readonly FLOW: "FLOW";
|