Skip to content

Commit 0a640ee

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

File tree

89 files changed

+272
-1405
lines changed

Some content is hidden

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

89 files changed

+272
-1405
lines changed

CLI.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,6 @@ Options:
785785
| --wallet-file \<walletFileName\> | specify the name of the wallet file to use |
786786
| --wallet-address \<walletAddress\> | specify the address of the wallet to use |
787787
| --keystoredir \<path\> | specify the wallet directory \<"global"\|"local"\|custom\> |
788-
| --tee | use the Trusted Execution Environment template |
789788
| --tee-framework \<name\> | specify the TEE framework to use |
790789

791790
#### iexec app deploy
@@ -875,7 +874,6 @@ Options:
875874
| --raw | use raw output |
876875
| --quiet | stop prompting updates |
877876
| --chain \<name\> | chain name from "chain.json" |
878-
| --tee-framework \<name\> | specify the TEE framework to use |
879877

880878
#### iexec app push-secret
881879

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

904901
#### iexec app publish
905902

@@ -1224,7 +1221,6 @@ Options:
12241221
| --keystoredir \<path\> | specify the wallet directory \<"global"\|"local"\|custom\> |
12251222
| --chain \<name\> | chain name from "chain.json" |
12261223
| --secret-path \<secretPath\> | push the secret from a file |
1227-
| --tee-framework \<name\> | specify the TEE framework to use |
12281224

12291225
#### iexec dataset check-secret
12301226

@@ -1243,7 +1239,6 @@ Options:
12431239
| --raw | use raw output |
12441240
| --quiet | stop prompting updates |
12451241
| --chain \<name\> | chain name from "chain.json" |
1246-
| --tee-framework \<name\> | specify the TEE framework to use |
12471242

12481243
#### iexec dataset publish
12491244

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

15841578
#### iexec requester check-secret
15851579

@@ -1602,7 +1596,6 @@ Options:
16021596
| --wallet-address \<walletAddress\> | specify the address of the wallet to use |
16031597
| --keystoredir \<path\> | specify the wallet directory \<"global"\|"local"\|custom\> |
16041598
| --chain \<name\> | chain name from "chain.json" |
1605-
| --tee-framework \<name\> | specify the TEE framework to use |
16061599

16071600
### iexec order
16081601

@@ -2138,7 +2131,6 @@ Options:
21382131
| --chain \<name\> | chain name from "chain.json" |
21392132
| --force-update | update if already exists |
21402133
| --token \<token\> | storage provider authorization token (unsafe) |
2141-
| --tee-framework \<name\> | specify the TEE framework to use |
21422134

21432135
#### iexec storage check
21442136

@@ -2162,7 +2154,6 @@ Options:
21622154
| --keystoredir \<path\> | specify the wallet directory \<"global"\|"local"\|custom\> |
21632155
| --chain \<name\> | chain name from "chain.json" |
21642156
| --user \<address\> | custom user address |
2165-
| --tee-framework \<name\> | specify the TEE framework to use |
21662157

21672158
### iexec result
21682159

@@ -2255,7 +2246,6 @@ Options:
22552246
| --chain \<name\> | chain name from "chain.json" |
22562247
| --force-update | update if already exists |
22572248
| --secret-path \<secretPath\> | push the secret from a file |
2258-
| --tee-framework \<name\> | specify the TEE framework to use |
22592249

22602250
#### iexec result check-encryption-key
22612251

@@ -2280,7 +2270,6 @@ Options:
22802270
| --wallet-address \<walletAddress\> | specify the address of the wallet to use |
22812271
| --keystoredir \<path\> | specify the wallet directory \<"global"\|"local"\|custom\> |
22822272
| --chain \<name\> | chain name from "chain.json" |
2283-
| --tee-framework \<name\> | specify the TEE framework to use |
22842273

22852274
### iexec ens
22862275

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: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ ___
101101

102102
### resolveBridgedContractsClient
103103

104-
**resolveBridgedContractsClient**(): `Promise`<[`IExecContractsClient`](internal_.IExecContractsClient.md)\>
104+
**resolveBridgedContractsClient**(): `Promise`<[`<internal>`](internal_._internal_.md)\>
105105

106106
resolve the current bridged IExecContractsClient
107107

108108
#### Returns
109109

110-
`Promise`<[`IExecContractsClient`](internal_.IExecContractsClient.md)\>
110+
`Promise`<[`<internal>`](internal_._internal_.md)\>
111111

112112
___
113113

@@ -137,13 +137,13 @@ ___
137137

138138
### resolveContractsClient
139139

140-
**resolveContractsClient**(): `Promise`<[`IExecContractsClient`](internal_.IExecContractsClient.md)\>
140+
**resolveContractsClient**(): `Promise`<[`<internal>`](internal_._internal_.md)\>
141141

142142
resolve the current IExecContractsClient
143143

144144
#### Returns
145145

146-
`Promise`<[`IExecContractsClient`](internal_.IExecContractsClient.md)\>
146+
`Promise`<[`<internal>`](internal_._internal_.md)\>
147147

148148
___
149149

@@ -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/classes/internal_.IExecContractsClient.md renamed to docs/classes/internal_._internal_.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
1-
[iexec](../README.md) / [Exports](../modules.md) / [<internal\>](../modules/internal_.md) / IExecContractsClient
1+
[iexec](../README.md) / [Exports](../modules.md) / [<internal\>](../modules/internal_.md) / <internal\>
22

3-
# Class: IExecContractsClient
3+
# Class: <internal\>
44

5-
[<internal>](../modules/internal_.md).IExecContractsClient
5+
[<internal>](../modules/internal_.md).<internal>
66

77
## Table of contents
88

99
### Constructors
1010

11-
- [constructor](internal_.IExecContractsClient.md#constructor)
11+
- [constructor](internal_._internal_.md#constructor)
1212

1313
### Properties
1414

15-
- [chainId](internal_.IExecContractsClient.md#chainid)
16-
- [confirms](internal_.IExecContractsClient.md#confirms)
17-
- [hubAddress](internal_.IExecContractsClient.md#hubaddress)
18-
- [isNative](internal_.IExecContractsClient.md#isnative)
19-
- [pocoVersion](internal_.IExecContractsClient.md#pocoversion)
20-
- [provider](internal_.IExecContractsClient.md#provider)
21-
- [signer](internal_.IExecContractsClient.md#signer)
22-
- [txOptions](internal_.IExecContractsClient.md#txoptions)
15+
- [chainId](internal_._internal_.md#chainid)
16+
- [confirms](internal_._internal_.md#confirms)
17+
- [hubAddress](internal_._internal_.md#hubaddress)
18+
- [isNative](internal_._internal_.md#isnative)
19+
- [pocoVersion](internal_._internal_.md#pocoversion)
20+
- [provider](internal_._internal_.md#provider)
21+
- [signer](internal_._internal_.md#signer)
22+
- [txOptions](internal_._internal_.md#txoptions)
2323

2424
### Methods
2525

26-
- [fetchRegistryAddress](internal_.IExecContractsClient.md#fetchregistryaddress)
27-
- [fetchRegistryContract](internal_.IExecContractsClient.md#fetchregistrycontract)
28-
- [fetchTokenAddress](internal_.IExecContractsClient.md#fetchtokenaddress)
29-
- [fetchTokenContract](internal_.IExecContractsClient.md#fetchtokencontract)
30-
- [getContract](internal_.IExecContractsClient.md#getcontract)
31-
- [getIExecContract](internal_.IExecContractsClient.md#getiexeccontract)
32-
- [setSigner](internal_.IExecContractsClient.md#setsigner)
26+
- [fetchRegistryAddress](internal_._internal_.md#fetchregistryaddress)
27+
- [fetchRegistryContract](internal_._internal_.md#fetchregistrycontract)
28+
- [fetchTokenAddress](internal_._internal_.md#fetchtokenaddress)
29+
- [fetchTokenContract](internal_._internal_.md#fetchtokencontract)
30+
- [getContract](internal_._internal_.md#getcontract)
31+
- [getIExecContract](internal_._internal_.md#getiexeccontract)
32+
- [setSigner](internal_._internal_.md#setsigner)
3333

3434
## Constructors
3535

3636
### constructor
3737

38-
**new IExecContractsClient**(`args`): [`IExecContractsClient`](internal_.IExecContractsClient.md)
38+
**new <internal>**(`args`): [`<internal>`](internal_._internal_.md)
3939

4040
Create a client for IExec contracts
4141

@@ -54,7 +54,7 @@ Create a client for IExec contracts
5454

5555
#### Returns
5656

57-
[`IExecContractsClient`](internal_.IExecContractsClient.md)
57+
[`<internal>`](internal_._internal_.md)
5858

5959
## Properties
6060

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

0 commit comments

Comments
 (0)