You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -4207,8 +4204,7 @@ export function tjettonToken(
4207
4204
* @param fullName Complete human-readable name of the token
4208
4205
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
4209
4206
* @param baseUrl token standard base url, ref: https://docs.digitalasset.com/utilities/devnet/overview/registry-user-guide/token-standard.html#token-standard-endpoints
4210
-
* @param assetName the token instrument name
4211
-
* @param admin the instrument admin for this token
4207
+
* @param contractAddress the contract address of the token in the form `instrumentAdmin:instrumentId`
4212
4208
* @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
4213
4209
* @param features Features of this coin. Defaults to CANTON_FEATURES
4214
4210
* @param prefix Optional token prefix. Defaults to empty string
@@ -4222,8 +4218,7 @@ export function cantonToken(
4222
4218
fullName: string,
4223
4219
decimalPlaces: number,
4224
4220
baseUrl: string,
4225
-
assetName: string,
4226
-
admin: string,
4221
+
contractAddress: string,
4227
4222
asset: UnderlyingAsset,
4228
4223
features: CoinFeature[]=CANTON_TOKEN_FEATURES,
4229
4224
prefix='',
@@ -4239,8 +4234,7 @@ export function cantonToken(
4239
4234
decimalPlaces,
4240
4235
network,
4241
4236
baseUrl,
4242
-
assetName,
4243
-
admin,
4237
+
contractAddress,
4244
4238
asset,
4245
4239
features,
4246
4240
prefix,
@@ -4260,8 +4254,7 @@ export function cantonToken(
4260
4254
* @param fullName Complete human-readable name of the token
4261
4255
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
4262
4256
* @param baseUrl token standard base url
4263
-
* @param assetName the token instrument name
4264
-
* @param admin the instrument admin for this token
4257
+
* @param contractAddress the contract address of the token in the form `instrumentAdmin:instrumentId`
4265
4258
* @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
4266
4259
* @param features Features of this coin. Defaults to the CANTON_FEATURES
4267
4260
* @param prefix Optional token prefix. Defaults to empty string
@@ -4275,8 +4268,7 @@ export function tcantonToken(
4275
4268
fullName: string,
4276
4269
decimalPlaces: number,
4277
4270
baseUrl: string,
4278
-
assetName: string,
4279
-
admin: string,
4271
+
contractAddress: string,
4280
4272
asset: UnderlyingAsset,
4281
4273
features: CoinFeature[]=CANTON_TOKEN_FEATURES,
4282
4274
prefix='',
@@ -4290,8 +4282,7 @@ export function tcantonToken(
0 commit comments