@nightlylabs/dex-sdk 0.1.2 → 0.1.4
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/dist/index.cjs +3 -1
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2192,9 +2192,11 @@ var TestFaucet = class _TestFaucet extends client_default {
|
|
|
2192
2192
|
await (0, import_ts_sdk3.generateRawTransaction)({
|
|
2193
2193
|
sender: this._apiKey.accountAddress,
|
|
2194
2194
|
aptosConfig: this._aptos.config,
|
|
2195
|
-
payload
|
|
2195
|
+
payload,
|
|
2196
|
+
feePayerAddress: import_ts_sdk3.AccountAddress.ZERO
|
|
2196
2197
|
})
|
|
2197
2198
|
);
|
|
2199
|
+
tx.feePayerAddress = import_ts_sdk3.AccountAddress.ZERO;
|
|
2198
2200
|
const signature = this._aptos.sign({
|
|
2199
2201
|
signer: this._apiKey,
|
|
2200
2202
|
transaction: tx
|
package/dist/index.js
CHANGED
|
@@ -2086,6 +2086,7 @@ var faucetEntrypoints_default = ABI26;
|
|
|
2086
2086
|
|
|
2087
2087
|
// src/testFaucet.ts
|
|
2088
2088
|
import {
|
|
2089
|
+
AccountAddress as AccountAddress2,
|
|
2089
2090
|
generateRawTransaction as generateRawTransaction2,
|
|
2090
2091
|
generateTransactionPayload as generateTransactionPayload2,
|
|
2091
2092
|
SimpleTransaction as SimpleTransaction2
|
|
@@ -2146,9 +2147,11 @@ var TestFaucet = class _TestFaucet extends client_default {
|
|
|
2146
2147
|
await generateRawTransaction2({
|
|
2147
2148
|
sender: this._apiKey.accountAddress,
|
|
2148
2149
|
aptosConfig: this._aptos.config,
|
|
2149
|
-
payload
|
|
2150
|
+
payload,
|
|
2151
|
+
feePayerAddress: AccountAddress2.ZERO
|
|
2150
2152
|
})
|
|
2151
2153
|
);
|
|
2154
|
+
tx.feePayerAddress = AccountAddress2.ZERO;
|
|
2152
2155
|
const signature = this._aptos.sign({
|
|
2153
2156
|
signer: this._apiKey,
|
|
2154
2157
|
transaction: tx
|