Skip to content

Commit 8606224

Browse files
feat!: remove multi SMS and gramine support
1 parent 725030f commit 8606224

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+226
-1264
lines changed

CLI.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,6 @@ Options:
875875
| --raw | use raw output |
876876
| --quiet | stop prompting updates |
877877
| --chain \<name\> | chain name from "chain.json" |
878-
| --tee-framework \<name\> | specify the TEE framework to use |
879878

880879
#### iexec app push-secret
881880

@@ -899,7 +898,6 @@ Options:
899898
| --keystoredir \<path\> | specify the wallet directory \<"global"\|"local"\|custom\> |
900899
| --chain \<name\> | chain name from "chain.json" |
901900
| --secret-value \<secretValue\> | secret value (unsafe) |
902-
| --tee-framework \<name\> | specify the TEE framework to use |
903901

904902
#### iexec app publish
905903

@@ -1224,7 +1222,6 @@ Options:
12241222
| --keystoredir \<path\> | specify the wallet directory \<"global"\|"local"\|custom\> |
12251223
| --chain \<name\> | chain name from "chain.json" |
12261224
| --secret-path \<secretPath\> | push the secret from a file |
1227-
| --tee-framework \<name\> | specify the TEE framework to use |
12281225

12291226
#### iexec dataset check-secret
12301227

@@ -1243,7 +1240,6 @@ Options:
12431240
| --raw | use raw output |
12441241
| --quiet | stop prompting updates |
12451242
| --chain \<name\> | chain name from "chain.json" |
1246-
| --tee-framework \<name\> | specify the TEE framework to use |
12471243

12481244
#### iexec dataset publish
12491245

@@ -1579,7 +1575,6 @@ Options:
15791575
| --keystoredir \<path\> | specify the wallet directory \<"global"\|"local"\|custom\> |
15801576
| --chain \<name\> | chain name from "chain.json" |
15811577
| --secret-value \<secretValue\> | secret value (unsafe) |
1582-
| --tee-framework \<name\> | specify the TEE framework to use |
15831578

15841579
#### iexec requester check-secret
15851580

@@ -1602,7 +1597,6 @@ Options:
16021597
| --wallet-address \<walletAddress\> | specify the address of the wallet to use |
16031598
| --keystoredir \<path\> | specify the wallet directory \<"global"\|"local"\|custom\> |
16041599
| --chain \<name\> | chain name from "chain.json" |
1605-
| --tee-framework \<name\> | specify the TEE framework to use |
16061600

16071601
### iexec order
16081602

@@ -2138,7 +2132,6 @@ Options:
21382132
| --chain \<name\> | chain name from "chain.json" |
21392133
| --force-update | update if already exists |
21402134
| --token \<token\> | storage provider authorization token (unsafe) |
2141-
| --tee-framework \<name\> | specify the TEE framework to use |
21422135

21432136
#### iexec storage check
21442137

@@ -2162,7 +2155,6 @@ Options:
21622155
| --keystoredir \<path\> | specify the wallet directory \<"global"\|"local"\|custom\> |
21632156
| --chain \<name\> | chain name from "chain.json" |
21642157
| --user \<address\> | custom user address |
2165-
| --tee-framework \<name\> | specify the TEE framework to use |
21662158

21672159
### iexec result
21682160

@@ -2255,7 +2247,6 @@ Options:
22552247
| --chain \<name\> | chain name from "chain.json" |
22562248
| --force-update | update if already exists |
22572249
| --secret-path \<secretPath\> | push the secret from a file |
2258-
| --tee-framework \<name\> | specify the TEE framework to use |
22592250

22602251
#### iexec result check-encryption-key
22612252

@@ -2280,7 +2271,6 @@ Options:
22802271
| --wallet-address \<walletAddress\> | specify the address of the wallet to use |
22812272
| --keystoredir \<path\> | specify the wallet directory \<"global"\|"local"\|custom\> |
22822273
| --chain \<name\> | chain name from "chain.json" |
2283-
| --tee-framework \<name\> | specify the TEE framework to use |
22842274

22852275
### iexec ens
22862276

docs/classes/IExecAppModule.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ current IExecConfig
7272

7373
### checkAppSecretExists
7474

75-
**checkAppSecretExists**(`appAddress`, `options?`): `Promise`<`boolean`\>
75+
**checkAppSecretExists**(`appAddress`): `Promise`<`boolean`\>
7676

7777
check if a secret exists for the app in the Secret Management Service
7878

@@ -89,8 +89,6 @@ _NB_:
8989
| Name | Type |
9090
| :------ | :------ |
9191
| `appAddress` | `string` |
92-
| `options?` | `Object` |
93-
| `options.teeFramework?` | [`TeeFramework`](../modules.md#teeframework) |
9492

9593
#### Returns
9694

@@ -210,7 +208,7 @@ ___
210208

211209
### pushAppSecret
212210

213-
**pushAppSecret**(`appAddress`, `secretValue`, `options?`): `Promise`<`boolean`\>
211+
**pushAppSecret**(`appAddress`, `secretValue`): `Promise`<`boolean`\>
214212

215213
**SIGNER REQUIRED, ONLY APP OWNER**
216214

@@ -233,8 +231,6 @@ console.log('pushed App secret:', isPushed);
233231
| :------ | :------ |
234232
| `appAddress` | `string` |
235233
| `secretValue` | `String` |
236-
| `options?` | `Object` |
237-
| `options.teeFramework?` | [`TeeFramework`](../modules.md#teeframework) |
238234

239235
#### Returns
240236

docs/classes/IExecConfig.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -221,17 +221,10 @@ ___
221221

222222
### resolveSmsURL
223223

224-
**resolveSmsURL**(`options?`): `Promise`<`string`\>
224+
**resolveSmsURL**(): `Promise`<`string`\>
225225

226226
resolve the current SMS URL
227227

228-
#### Parameters
229-
230-
| Name | Type |
231-
| :------ | :------ |
232-
| `options?` | `Object` |
233-
| `options.teeFramework?` | [`TeeFramework`](../modules.md#teeframework) |
234-
235228
#### Returns
236229

237230
`Promise`<`string`\>

docs/classes/IExecDatasetModule.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ current IExecConfig
7575

7676
### checkDatasetSecretExists
7777

78-
**checkDatasetSecretExists**(`datasetAddress`, `options?`): `Promise`<`boolean`\>
78+
**checkDatasetSecretExists**(`datasetAddress`): `Promise`<`boolean`\>
7979

8080
check if a the dataset secret exists in the Secret Management Service
8181

@@ -90,8 +90,6 @@ console.log('secret exists:', isSecretSet);
9090
| Name | Type |
9191
| :------ | :------ |
9292
| `datasetAddress` | `string` |
93-
| `options?` | `Object` |
94-
| `options.teeFramework?` | [`TeeFramework`](../modules.md#teeframework) |
9593

9694
#### Returns
9795

@@ -302,7 +300,7 @@ ___
302300

303301
### pushDatasetSecret
304302

305-
**pushDatasetSecret**(`datasetAddress`, `encryptionKey`, `options?`): `Promise`<`boolean`\>
303+
**pushDatasetSecret**(`datasetAddress`, `encryptionKey`): `Promise`<`boolean`\>
306304

307305
**SIGNER REQUIRED, ONLY DATASET OWNER**
308306

@@ -322,8 +320,6 @@ console.log('secret pushed:', pushed);
322320
| :------ | :------ |
323321
| `datasetAddress` | `string` |
324322
| `encryptionKey` | `string` |
325-
| `options?` | `Object` |
326-
| `options.teeFramework?` | [`TeeFramework`](../modules.md#teeframework) |
327323

328324
#### Returns
329325

docs/classes/IExecResultModule.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ current IExecConfig
6565

6666
### checkResultEncryptionKeyExists
6767

68-
**checkResultEncryptionKeyExists**(`beneficiaryAddress`, `options`): `Promise`<`boolean`\>
68+
**checkResultEncryptionKeyExists**(`beneficiaryAddress`): `Promise`<`boolean`\>
6969

7070
check if a beneficiary result encryption key exists in the Secret Management Service
7171

@@ -80,8 +80,6 @@ console.log('encryption key available:', isEncryptionKeyAvailable);
8080
| Name | Type |
8181
| :------ | :------ |
8282
| `beneficiaryAddress` | `string` |
83-
| `options` | `Object` |
84-
| `options.teeFramework?` | [`TeeFramework`](../modules.md#teeframework) |
8583

8684
#### Returns
8785

@@ -144,7 +142,6 @@ console.log('encryption key pushed:', isPushed);
144142
| `rsaPublicKey` | `string` \| `CryptoKey` |
145143
| `options?` | `Object` |
146144
| `options.forceUpdate?` | `boolean` |
147-
| `options.teeFramework?` | [`TeeFramework`](../modules.md#teeframework) |
148145

149146
#### Returns
150147

docs/classes/IExecSecretsModule.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ current IExecConfig
6565

6666
### checkRequesterSecretExists
6767

68-
**checkRequesterSecretExists**(`requesterAddress`, `secretName`, `options?`): `Promise`<`boolean`\>
68+
**checkRequesterSecretExists**(`requesterAddress`, `secretName`): `Promise`<`boolean`\>
6969

7070
check if a named secret exists for the requester in the Secret Management Service
7171

@@ -81,8 +81,6 @@ console.log('secret "my-password" set:', isSecretSet);
8181
| :------ | :------ |
8282
| `requesterAddress` | `string` |
8383
| `secretName` | `String` |
84-
| `options?` | `Object` |
85-
| `options.teeFramework?` | [`TeeFramework`](../modules.md#teeframework) |
8684

8785
#### Returns
8886

@@ -92,7 +90,7 @@ ___
9290

9391
### pushRequesterSecret
9492

95-
**pushRequesterSecret**(`secretName`, `secretValue`, `options?`): `Promise`<{ `isPushed`: `boolean` }\>
93+
**pushRequesterSecret**(`secretName`, `secretValue`): `Promise`<{ `isPushed`: `boolean` }\>
9694

9795
**SIGNER REQUIRED, ONLY REQUESTER**
9896

@@ -114,8 +112,6 @@ console.log('pushed secret "my-password":', isPushed);
114112
| :------ | :------ |
115113
| `secretName` | `String` |
116114
| `secretValue` | `String` |
117-
| `options?` | `Object` |
118-
| `options.teeFramework?` | [`TeeFramework`](../modules.md#teeframework) |
119115

120116
#### Returns
121117

docs/classes/IExecStorageModule.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ console.log('IPFS storage initialized:', isIpfsStorageInitialized);
8585
| `beneficiaryAddress` | `string` |
8686
| `options?` | `Object` |
8787
| `options.provider?` | `string` |
88-
| `options.teeFramework?` | [`TeeFramework`](../modules.md#teeframework) |
8988

9089
#### Returns
9190

@@ -147,7 +146,6 @@ console.log('dropbox storage initialized:', isPushed);
147146
| `options?` | `Object` |
148147
| `options.forceUpdate?` | `boolean` |
149148
| `options.provider?` | `string` |
150-
| `options.teeFramework?` | [`TeeFramework`](../modules.md#teeframework) |
151149

152150
#### Returns
153151

docs/interfaces/IExecConfigOptions.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
- [bridgedNetworkConf](IExecConfigOptions.md#bridgednetworkconf)
1212
- [compassURL](IExecConfigOptions.md#compassurl)
1313
- [confirms](IExecConfigOptions.md#confirms)
14-
- [defaultTeeFramework](IExecConfigOptions.md#defaultteeframework)
1514
- [ensPublicResolverAddress](IExecConfigOptions.md#enspublicresolveraddress)
1615
- [hubAddress](IExecConfigOptions.md#hubaddress)
1716
- [iexecGatewayURL](IExecConfigOptions.md#iexecgatewayurl)
@@ -77,14 +76,6 @@ number of block to wait for transactions confirmation (default 1)
7776

7877
___
7978

80-
### defaultTeeFramework
81-
82-
`Optional` **defaultTeeFramework**: [`TeeFramework`](../modules.md#teeframework)
83-
84-
override the TEE framework to use when as default
85-
86-
___
87-
8879
### ensPublicResolverAddress
8980

9081
`Optional` **ensPublicResolverAddress**: `string`
@@ -159,7 +150,7 @@ ___
159150

160151
### smsURL
161152

162-
`Optional` **smsURL**: `string` \| `Record`<[`TeeFramework`](../modules.md#teeframework), `string`\>
153+
`Optional` **smsURL**: `string`
163154

164155
override the SMS URL to target a custom instance
165156

docs/interfaces/internal_.AppDeploymentArgs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ___
2727

2828
### mrenclave
2929

30-
`Optional` **mrenclave**: [`SconeMREnclave`](internal_.SconeMREnclave.md) \| [`GramineMREnclave`](internal_.GramineMREnclave.md)
30+
`Optional` **mrenclave**: [`SconeMREnclave`](internal_.SconeMREnclave.md)
3131

3232
optional for TEE apps only, specify the TEE protocol to use
3333

docs/interfaces/internal_.GramineMREnclave.md

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)